From bc57047c8f065f8009126c4bd16dcbf19beb4f90 Mon Sep 17 00:00:00 2001
From: jo2-holdsworth <jack2.holdsworth@live.uwe.ac.uk>
Date: Mon, 3 Apr 2023 19:42:44 +0100
Subject: [PATCH] README FIX

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 8b91d9b..6d36bae 100644
--- a/README.md
+++ b/README.md
@@ -63,8 +63,8 @@ ___
 ___
 ### Task 4: Expanding capability.
 * As we designed the binary tree to be universal adding to the tree is very easy in theory we just add a few more characters to the array in **initTree()** in breadth first order. However, when we dive into it we quickly see that the array becomes very long. This isn't efficient todo by hand. I have created a programme todo it for us.
-* ***inserter.py** is designed to take an heap string and add values to that heap. It also will add new layers by adding the correct amount of Null characters. This is what the tree looks like in heap form now.![image](src/screenshot22.PNG). The function to insert is very simple and the next worksheet builds on a similar method so it will be very useful. ![image](src/screenshot23.PNG) When we run our new characters to be inserted ![image](src/screenshot24.PNG) we get ![image](src/screenshot25.PNG).
-* ***morse.py** To simple update the binary tree with new values we just add it to **initTree()** like this. ![image](src/screenshot26.PNG)
+* ***inserter.py*** is designed to take an heap string and add values to that heap. It also will add new layers by adding the correct amount of Null characters. This is what the tree looks like in heap form now.![image](src/screenshot22.PNG). The function to insert is very simple and the next worksheet builds on a similar method so it will be very useful. ![image](src/screenshot23.PNG) When we run our new characters to be inserted ![image](src/screenshot24.PNG) we get ![image](src/screenshot25.PNG).
+* ***morse.py*** To simple update the binary tree with new values we just add it to **initTree()** like this. ![image](src/screenshot26.PNG)
 * ***unittesting*** after testing some of the new values we get no unexpected errors. ![image](src/screenshot27.PNG)
 
 ## Getting Started
-- 
GitLab