Merge pull request from bocoup/fix-example

Correct example in contribution guidelines
This commit is contained in:
Leo Balter 2016-03-29 15:19:02 -07:00
commit c4086508db
1 changed files with 2 additions and 2 deletions

View File

@ -193,8 +193,8 @@ var var = var;
Expectations for **runtime errors** should be defined using the `assert.throws` method and the appropriate JavaScript Error constructor function:
```javascript
assert.throws(ReferenceError, function() {
1 += 1; // expect this to throw ReferenceError
assert.throws(TypeError, function() {
null(); // expect this statement to throw a TypeError
});
```