Skip to content

Commit

Permalink
docs: fix typo in public api page
Browse files Browse the repository at this point in the history
Change 'exitted' to 'exited' in two places on the public api page.
  • Loading branch information
Veronica Lynn committed Jun 26, 2013
1 parent e9a53bd commit 3382ef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/dev/01-public-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Equivalent of `karma start`.
```javascript
var server = require('karma').server;
server.start({port: 9877}, function(exitCode) {
console.log('Karma has exitted with ' + exitCode);
console.log('Karma has exited with ' + exitCode);
process.exit(exitCode);
});
```
Expand All @@ -28,7 +28,7 @@ Equivalent of `karma run`.
```javascript
var runner = require('karma').runner;
runner.run({runnerPort: 9100}, function(exitCode) {
console.log('Karma has exitted with ' + exitCode);
console.log('Karma has exited with ' + exitCode);
process.exit(exitCode);
});
```
Expand Down

0 comments on commit 3382ef1

Please sign in to comment.