From a604e51f1c7565c51b41fa8247fe57ea1a4fa7de Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Thu, 22 Aug 2013 14:06:20 -0700 Subject: [PATCH] Remove redundant argument to biscotto --- 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 6235cbc4f..b25e8220d 100644 --- a/tasks/docs-task.coffee +++ b/tasks/docs-task.coffee @@ -10,7 +10,7 @@ module.exports = (grunt) -> grunt.task.run('markdown:guides') done = @async() - args = [commonArgs..., '--name', 'Atom', '--title', 'Atom API Documentation', '-o', 'docs/output/api', 'src/'] + args = [commonArgs..., '--title', 'Atom API Documentation', '-o', 'docs/output/api', 'src/'] grunt.util.spawn({cmd, args, opts}, done) grunt.registerTask 'lint-docs', 'Generate stats about the doc coverage', ->