Download this file.
Please log in if you would like to add comments. | |
1 | check_file(file) is rather ambiguous about its output. It | 2 | only states that it checks a file for misspelled words. If I | 3 | had felt mean, I would have assumed that it did exactly what | 4 | part uno was asking for. | 5 | | 6 | check_text(text) suffers from the same problem. | 7 | | 8 | The more literal functions for tokenizing and file reading | 9 | and single word checking were fine, so I used those. I | 10 | assumed read_dictionary took the string representing a | 11 | filename. |
|