diff --git a/README.md b/README.md index c28f754..d6d06ee 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,11 +10,11 @@ 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 -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).