From f04c83f42865528c2287a8da667ca80fe9a0effe Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 2 Oct 2023 10:55:16 -0400 Subject: [PATCH] adding line breakers --- lectures/10_linked_lists/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lectures/10_linked_lists/README.md b/lectures/10_linked_lists/README.md index 0721ef4..95abb6a 100644 --- a/lectures/10_linked_lists/README.md +++ b/lectures/10_linked_lists/README.md @@ -132,10 +132,10 @@ assert (*itr == 100); // might seem ok... but rewrite the code to avoid this! ## 10.4 Objects with Pointers, Linking Objects Together -The two fundamental mechanisms of linked lists are: -– creating objects with pointers as one of the member variables, and -– making these pointers point to other objects of the same type. - These mechanisms are illustrated in the following program: +- The two fundamental mechanisms of linked lists are: + – creating objects with pointers as one of the member variables, and + – making these pointers point to other objects of the same type. +- These mechanisms are illustrated in the following program: ```cpp template