Skip to content

minor typo #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion lab3_text_analysis_and_entity_resolution_student.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
" 'simpleTokenize should handle sample text')\n",
"Test.assertEquals(simpleTokenize(' '), [], 'simpleTokenize should handle empty string')\n",
"Test.assertEquals(simpleTokenize('!!!!123A/456_B/789C.123A'), ['123a','456_b','789c','123a'],\n",
" 'simpleTokenize should handle puntuations and lowercase result')\n",
" 'simpleTokenize should handle punctuations and lowercase result')\n",
"Test.assertEquals(simpleTokenize('fox fox'), ['fox', 'fox'],\n",
" 'simpleTokenize should not remove duplicates')"
]
Expand Down