From e2caf234e39dcd29ccb76b382691f5e0f57742fb Mon Sep 17 00:00:00 2001 From: Kenan Yildirim Date: Fri, 14 Sep 2012 20:43:42 -0400 Subject: [PATCH] sucess -> success --- cli/tasks/yeoman.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/tasks/yeoman.js b/cli/tasks/yeoman.js index 27d4a867..c04142d2 100644 --- a/cli/tasks/yeoman.js +++ b/cli/tasks/yeoman.js @@ -122,7 +122,7 @@ module.exports = function(grunt) { var now = +new Date(); grunt.registerTask('time', 'Print sucess status with elapsed time', function() { - grunt.log.ok('Build sucess. Done in ' + ((+new Date() - now) / 1000) + 's'); + grunt.log.ok('Build success. Done in ' + ((+new Date() - now) / 1000) + 's'); }); // Output some size info about a file, from a stat object.