Skip to content

Commit

Permalink
Merge pull request #602 from kolvia/docs-fixtypo
Browse files Browse the repository at this point in the history
docs: fix typo in public api page
  • Loading branch information
vojtajina committed Jun 28, 2013
2 parents 78a7094 + 3382ef1 commit 9b5c496
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 9b5c496

Please sign in to comment.