Skip to content

Commit 5ad6668

Browse files
authored
Fix spelling error and heading in instruction.append file. (#3807)
1 parent f93b0dd commit 5ad6668

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exercises/practice/linked-list/.docs/instructions.append.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
While linked lists can be implemented in a variety of ways with a variety of underlying data structures, we ask here that you implement your linked list in an OOP fashion.
66

77
In the stub file, you will see the start of a `Node` class, as well as a `LinkedList` class.
8-
Your `Node` class should keep track of its value, as well as which other nodes preceed or follow.
8+
Your `Node` class should keep track of its value, as well as which nodes precede or follow.
99
Your `push`, `pop`, `shift`, `unshift`, and the special method for `len` should be implemented in the `LinkedList` class.
1010
You might also find it useful to implement a special `iter` method for iteration.
1111

@@ -17,7 +17,7 @@ If the value appears more than once, only the **first** occurrence should be rem
1717

1818
<br>
1919

20-
## Exception messages
20+
## Exception Messages
2121

2222
Sometimes it is necessary to [raise an exception][raising]. When you do this, you should always include a **meaningful error message** to indicate what the source of the error is.
2323
This makes your code more readable and helps significantly with debugging.

0 commit comments

Comments
 (0)