Skip to content

Commit 4167276

Browse files
committed
Cleanup DEVELOPMENT.md
1 parent 9efcd3e commit 4167276

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/DEVELOPMENT.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ If you are having trouble, don't be afraid to [ask for help](./CONTRIBUTING.md#
1919

2020
## Developing Mocha
2121

22-
When you contribute to mocha, you will probably want to try to run your changes on the test suite of another project. You can (and should) run the test suite of mocha itself before committing, but also confirming that your changes give the expected result on another project.
22+
When you contribute to Mocha, you will probably want to try to run your changes on the test suite of another project. You can (and should) run the test suite of Mocha itself before committing, but also confirming that your changes give the expected result on another project.
2323

2424
For example, [WebSocket.io](https://github.com/LearnBoost/websocket.io/):
2525

2626
$ git clone https://github.com/LearnBoost/websocket.io.git
2727

28-
Retreive websocket.io's dependencies, which will include the stable version of mocha:
28+
Retrieve websocket.io's dependencies, which will include the stable version of Mocha:
2929

3030
$ cd websocket.io/
3131
$ npm install
3232

33-
Replace the mocha dependency by the current git repository:
33+
Replace the Mocha dependency by the current git repository:
3434

3535
$ cd node_modules/
3636
$ mv mocha/ mocha.save
37-
$ git clone https://github.com/visionmedia/mocha.git
37+
$ git clone https://github.com/mochajs/mocha.git
3838

39-
Install mocha's dependencies for the development version:
39+
Install Mocha's dependencies for the development version:
4040

4141
$ cd mocha
4242
$ npm install

0 commit comments

Comments
 (0)