# Nerissa Ying - cs198-ad # CS198 - Craft #2 # Date Created: 02/02/2003 # Date Last Modified: 02/02/2003 # Description: Design for module speling. # speling.py def addWord(wordStr) """Adds a word to the dictionary. """ pass def removeWord(wordStr) """Removes a word from the dictionary. """ pass def checkWord(wordStr) """Checks to see if the wordStr matches a word in the dictionary. """ pass def checkSentence(sentenceStr) """Checks to make sure all the words in the sentence are spelled correctly. """ pass def checkPassage(passageStr) """Checks to make sure all the words in the passage are spelled correctly. """ pass