Skip to content

Commit

Permalink
Update readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
jprichardson committed Nov 14, 2012
1 parent 46c7c45 commit 34cbd08
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ console.log(require('util').inspect(${1:obj}, true, ${2:10}, true))${0}
```
### console.dir [cd]
### [cd] console.dir
```javascript
console.dir(${1:obj})${0}
```
### function [fn]
### [fn] function
```javascript
function ${1:methodName} (${2:arguments}) {
Expand All @@ -53,14 +53,14 @@ function ${1:methodName} (${2:arguments}) {
```
### module.exports [me]
### [me] module.exports
```javascript
module.exports = ${1}
```
### prototype [proto]
### [proto] prototype
```javascript
${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
Expand All @@ -69,7 +69,7 @@ ${1:ClassName}.prototype.${2:methodName} = function(${3:arguments}) {
```
### require [req]
### [req] require
```javascript
require('${1:package}')${0}
Expand All @@ -80,7 +80,7 @@ require('${1:package}')${0}
Behaviorial Driven Development
------------------------------
### describe [desc]
### [desc] describe
```javascript
describe('${1:description}', function() {
Expand All @@ -89,7 +89,7 @@ describe('${1:description}', function() {
```
### asychronous it [ita]
### [ita] asychronous it
```javascript
it('${1:description}', function(done) {
Expand All @@ -99,7 +99,7 @@ it('${1:description}', function(done) {
```
### synchronous it [its]
### [its] synchronous it
```javascript
it('${1:description}', function() {
Expand Down

0 comments on commit 34cbd08

Please sign in to comment.