Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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***

Expand All @@ -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).
Expand Down