Skip to content

Commit

Permalink
Merge pull request Modernizr#997 from rxaviers/minor
Browse files Browse the repository at this point in the history
Minor fixes
  • Loading branch information
Stu Cox committed Jul 18, 2013
2 parents 87fbd81 + 4ec52c6 commit 8444f83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ module.exports = function( grunt ) {
if ( modConfig && modConfig.classPrefix ) {
mod = mod.replace("classPrefix : '',", "classPrefix : '" + modConfig.classPrefix.replace(/"/g, '\\"') + "',");
}
grunt.file.write( 'dist/modernizr-build.js', mod );
grunt.file.write(filepath, mod);
});
});

Expand Down
2 changes: 1 addition & 1 deletion src/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ define(['underscore'], function( _ ) {
}

output += ') {\n' +
' // Run each test\n' +
' // Run each test\n' +
' testRunner();\n' +
'\n';

Expand Down

0 comments on commit 8444f83

Please sign in to comment.