Commit 0745a00
authored
fix(docs): fix stopper.stop wrong variable name. closes #2244
Was:
```js
var stopper = require('karma').stopper
runner.stop({port: 9876}, function(exitCode) {
```
Changed to :
```js
var stopper = require('karma').stopper
stopper.stop({port: 9876}, function(exitCode) {
```1 parent e068fd2 commit 0745a00
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
129 | | - | |
| 129 | + | |
130 | 130 | | |
131 | 131 | | |
132 | 132 | | |
| |||
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
139 | | - | |
| 139 | + | |
0 commit comments