From 112b8bfa29c3558b25f522c5f48d8311a59548eb Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Fri, 3 Jan 2014 16:36:08 -0700 Subject: [PATCH] Generate docs from text-buffer instead of telepath --- tasks/docs-task.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/docs-task.coffee b/tasks/docs-task.coffee index ac034818f..d9d17c2c2 100644 --- a/tasks/docs-task.coffee +++ b/tasks/docs-task.coffee @@ -9,7 +9,7 @@ module.exports = (grunt) -> grunt.registerTask 'build-docs', 'Builds the API docs in src/app', -> done = @async() - args = [commonArgs..., '--title', 'Atom API Documentation', '-o', 'docs/output/api', 'src/', '../telepath/src/range.coffee', '../telepath/src/point.coffee', '../telepath/src/string-marker.coffee'] + args = [commonArgs..., '--title', 'Atom API Documentation', '-o', 'docs/output/api', 'src/', '../text-buffer/src/range.coffee', '../text-buffer/src/point.coffee', '../text-buffer/src/marker.coffee'] grunt.util.spawn({cmd, args, opts}, done) grunt.registerTask 'lint-docs', 'Generate stats about the doc coverage', ->