Skip to content

Commit 797c6d7

Browse files
authored
bob: add missing punctuation to bob instructions append (exercism#2127)
1 parent bd6ee2e commit 797c6d7

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

exercises/practice/bob/.docs/instructions.append.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Instructions append
22

3-
Since this exercise has difficulty 5 it doesn't come with any starter implementation.
3+
Since this exercise has difficulty 5, it doesn't come with any starter implementation.
44
This is so that you get to practice creating classes and methods which is an important part of programming in Java.
55
It does mean that when you first try to run the tests, they won't compile.
66
They will give you an error similar to:
@@ -13,9 +13,9 @@ They will give you an error similar to:
1313
```
1414
This error occurs because the test refers to a class that hasn't been created yet (`ExerciseClassName`).
1515
To resolve the error you need to add a file matching the class name in the error to the `src/main/java` directory.
16-
For example, for the error above you would add a file called `ExerciseClassName.java`.
16+
For example, for the error above, you would add a file called `ExerciseClassName.java`.
1717

18-
When you try to run the tests again you will get slightly different errors.
18+
When you try to run the tests again, you will get slightly different errors.
1919
You might get an error similar to:
2020
```
2121
constructor ExerciseClassName in class ExerciseClassName cannot be applied to given types;
@@ -46,7 +46,7 @@ You might also get an error similar to:
4646
location: variable exerciseClassName of type ExerciseClassName
4747
```
4848
This error means that you need to add a method called `someMethod` to your new class.
49-
In the example above you would add:
49+
In the example above, you would add:
5050
```
5151
String someMethod() {
5252
return "";
@@ -57,4 +57,4 @@ You can find out which return type it should have by looking at the type of obje
5757
Or you could set your method to return some random type (e.g. `void`), and run the tests again.
5858
The new error should tell you which type it's expecting.
5959

60-
After having resolved these errors you should be ready to start making the tests pass!
60+
After having resolved these errors, you should be ready to start making the tests pass!

0 commit comments

Comments
 (0)