Fixed syntax error in options.dateFormat example. Closes GH-163.
This commit is contained in:
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…
Reference in New Issue
Block a user