Skip to content

Commit 726805f

Browse files
committed
docs: Fixed grammar in contributing.md.
1 parent b4a4138 commit 726805f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ isn't really that complicated since the bulk of the work is done by `rustc`.
2626
<a name="addex"></a>
2727
### Adding an exercise
2828

29-
First step is to add the exercise! Call it `exercises/yourTopic/yourTopicN.rs`, make sure to
29+
The first step is to add the exercise! Name the file `exercises/yourTopic/yourTopicN.rs`, make sure to
3030
put in some helpful links, and link to sections of the book in `exercises/yourTopic/README.md`.
3131

32-
Next you want to make sure it runs when using `rustlings`. All exercises are stored in `info.toml`, under the `exercises` array. They're ordered by the order they're ran when using `rustlings verify`.
32+
Next make sure it runs with `rustlings`. The exercise metadata is stored in `info.toml`, under the `exercises` array. The order of the `exercises` array determines the order the exercises are run by `rustlings verify`.
3333

34-
You want to make sure where in the file you add your exercise. If you're not sure, add it at the bottom and ask in your pull request. To add an exercise, edit the file like this:
34+
Add the metadata for your exercise in the correct order in the `exercises` array. If you are unsure of the correct ordering, add it at the bottom and ask in your pull request. The exercise metadata should contain the following:
3535
```diff
3636
...
3737
+ [[exercises]]

0 commit comments

Comments
 (0)