]> zoso.dev Git - buffer.git/commitdiff
Update README.md
authorFeross Aboukhadijeh <feross@feross.org>
Sat, 5 Apr 2014 18:46:24 +0000 (11:46 -0700)
committerFeross Aboukhadijeh <feross@feross.org>
Sat, 5 Apr 2014 18:46:24 +0000 (11:46 -0700)
README.md

index fe7d8bf10bcbae57dfcbb2b27dd05590e952645b..4074eff4c773990b633755b1f508f21b018dd949 100644 (file)
--- a/README.md
+++ b/README.md
@@ -31,10 +31,11 @@ supported methods.
 
 If you want to use this module directly without browserify, install it:
 
-```
+```bash
 npm install buffer
 ```
 
+
 ## usage
 
 As mentioned before, when you `require('buffer')` or use the `Buffer` global in [browserify](http://github.com/substack/node-browserify), this module will automatically
@@ -42,7 +43,7 @@ be included in your bundle so you get a `Buffer` API that actually works in the
 
 If you're depending on this module explicitly, then require it like this:
 
-```
+```js
 var Buffer = require('buffer/').Buffer  // use the npm module, not the core module!
 ```