diff --git a/README.md b/README.md index fabe558..726844d 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ The super nifty way var colors = require('colors'); console.log('hello'.green); // outputs green text -console.log('i like cake and pies'.underline.red) // outputs red underlined text +console.log('i like cake and pies'.underline.red); // outputs red underlined text console.log('inverse the color'.inverse); // inverses the color console.log('OMG Rainbows!'.rainbow); // rainbow console.log('Run the trap'.trap); // Drops the bass @@ -105,7 +105,7 @@ or a slightly less nifty way which doesn't extend `String.prototype` var colors = require('colors/safe'); console.log(colors.green('hello')); // outputs green text -console.log(colors.red.underline('i like cake and pies')) // outputs red underlined text +console.log(colors.red.underline('i like cake and pies')); // outputs red underlined text console.log(colors.inverse('inverse the color')); // inverses the color console.log(colors.rainbow('OMG Rainbows!')); // rainbow console.log(colors.trap('Run the trap')); // Drops the bass