Remove redundant argument to biscotto

This commit is contained in:
Matt Colyer 2013-08-22 14:06:20 -07:00
parent 61e5e6ea28
commit a604e51f1c

View File

@ -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', ->