From 73348abc15027d6b20547f1731a71ad61b55569a Mon Sep 17 00:00:00 2001 From: Simon <61439947+Simon536@users.noreply.github.com> Date: Sun, 1 Aug 2021 14:21:51 +1000 Subject: [PATCH 1/2] Correct two typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c28f754..2ff57d5 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # WordSearch ## A Word Search Generator for python. ------------------------------------------------------------------------------------------------------------------------------ -## How to use the ***Word Search Genarator*** +## How to use the ***Word Search Generator*** ------------------------------------------------------------------------------------------------------------------------------ #### How to import the ***the word search Generator*** @@ -10,7 +10,7 @@ from WordSearch import WordSearch ``` ### How to initialize the WordSearch Object ``` -# words = a variable with all the words, which are all seperated by a comma. +# words = a variable with all the words, which are all separated by a comma. # Note : the variable which contains all words mustn't be called words. words = ("Hello,Blah,Superhero") x = 40 From 9b2bc1e19d72a5e991b7caf78fd5d29d56478933 Mon Sep 17 00:00:00 2001 From: Simon <61439947+Simon536@users.noreply.github.com> Date: Sun, 1 Aug 2021 14:25:41 +1000 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ff57d5..d6d06ee 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ from WordSearch import WordSearch # Note : the variable which contains all words mustn't be called words. words = ("Hello,Blah,Superhero") x = 40 -x = 40 +y = 40 # x & y indicate the size of the word search. # Note: When you take a look at our code, you will see 'grid' (a list). #Grid is a a list which contains lists(columns) which contain letters (strings).