Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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) { ```
- Loading branch information