From 2da9d631ef8a9e77a0255f5322f1487db7d80606 Mon Sep 17 00:00:00 2001
From: Fabricio Asfora Lira <32206134+minggas@users.noreply.github.com>
Date: Thu, 6 Jun 2019 16:27:58 -0300
Subject: [PATCH] fix: update "Note" formatting in "Remove Elements from a
Linked List" challenge (#36173)
* fix: update note format
* fix: moved note to same line
---
.../remove-elements-from-a-linked-list.english.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
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