diff --git a/curriculum/challenges/english/08-coding-interview-prep/data-structures/remove-elements-from-a-linked-list.english.md b/curriculum/challenges/english/08-coding-interview-prep/data-structures/remove-elements-from-a-linked-list.english.md
index ec9df2029a..8454833c31 100644
--- a/curriculum/challenges/english/08-coding-interview-prep/data-structures/remove-elements-from-a-linked-list.english.md
+++ b/curriculum/challenges/english/08-coding-interview-prep/data-structures/remove-elements-from-a-linked-list.english.md
@@ -15,8 +15,7 @@ If the element we wish to remove is the head
element, we reassign t
## Instructions
Write a remove
method that takes an element and removes it from the linked list.
-Note
-The length
of the list should decrease by one every time an element is removed from the linked list.
+Note: The length
of the list should decrease by one every time an element is removed from the linked list.
## Tests