Fixed syntax error in options.dateFormat example. Closes GH-163.

This commit is contained in:
Chris Wren 2013-07-19 20:43:59 -07:00 committed by Kyle Robinson Young
parent 061b31fc27
commit d6045385d3
2 changed files with 2 additions and 2 deletions

View File

@ -139,7 +139,7 @@ This is *only a task level option* and cannot be configured per target. By defau
watch: { watch: {
options: { options: {
dateFormat: function(time) { dateFormat: function(time) {
grunt.log.writeln('The watch finished in ' + time + 'ms at' + (new Date()).toString())); grunt.log.writeln('The watch finished in ' + time + 'ms at' + (new Date()).toString());
grunt.log.writeln('Waiting for more changes...'); grunt.log.writeln('Waiting for more changes...');
}, },
}, },

View File

@ -111,7 +111,7 @@ This is *only a task level option* and cannot be configured per target. By defau
watch: { watch: {
options: { options: {
dateFormat: function(time) { dateFormat: function(time) {
grunt.log.writeln('The watch finished in ' + time + 'ms at' + (new Date()).toString())); grunt.log.writeln('The watch finished in ' + time + 'ms at' + (new Date()).toString());
grunt.log.writeln('Waiting for more changes...'); grunt.log.writeln('Waiting for more changes...');
}, },
}, },