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

pull/177/head
Chris Wren 11 years ago committed by Kyle Robinson Young
parent 061b31fc27
commit d6045385d3

@ -139,7 +139,7 @@ This is *only a task level option* and cannot be configured per target. By defau
watch: {
options: {
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...');
},
},

@ -111,7 +111,7 @@ This is *only a task level option* and cannot be configured per target. By defau
watch: {
options: {
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...');
},
},

Loading…
Cancel
Save