Skip to content

Commit

Permalink
Fix mis-use of apostrophes
Browse files Browse the repository at this point in the history
Plural of "URL" is "URLs"; "URL's" means "of the URL".
  • Loading branch information
jdforrester committed Nov 14, 2014
1 parent b3f7446 commit ba6c620
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/css-url-embed.js
Expand Up @@ -150,12 +150,12 @@ module.exports = function(grunt) {
}

if (isVerbose) {
grunt.log.writeln('Using "' + baseDir + '" as base directory for URL\'s');
grunt.log.writeln('Using "' + baseDir + '" as base directory for URLs');
}

var uniqueEmbeddableUrls = grunt.util._.uniq(embeddableUrls);

grunt.log.writeln(uniqueEmbeddableUrls.length + ' embeddable URL' + (uniqueEmbeddableUrls.length > 1 ? "'s" : '') + ' found');
grunt.log.writeln(uniqueEmbeddableUrls.length + ' embeddable URL' + (uniqueEmbeddableUrls.length > 1 ? 's' : '') + ' found');

var fileContentRef = { content: fileContent };

Expand All @@ -169,7 +169,7 @@ module.exports = function(grunt) {
}
}

grunt.registerMultiTask('cssUrlEmbed', "Embed URL's as base64 strings inside your stylesheets", function() {
grunt.registerMultiTask('cssUrlEmbed', "Embed URLs as base64 strings inside your stylesheets", function() {
var async = this.async();

var options = this.options({
Expand Down

0 comments on commit ba6c620

Please sign in to comment.