add syntax

This commit is contained in:
Jessica Lord
2015-04-01 14:37:42 -07:00
parent 293b34e2a4
commit 2bfdb5d777

View File

@@ -118,11 +118,11 @@ For more information on how to work with Atom's official packages, see
### Example
```coffee
describe 'a dog'
it 'barks'
describe 'a dog', ->
it 'barks', ->
# spec here
describe 'when the dog is happy'
it 'wags its tail'
describe 'when the dog is happy', ->
it 'wags its tail', ->
# spec here
```