Skip to content

Commit bc5d906

Browse files
committed
Fixed incorrect import in Section 11.2.9
1 parent d143a90 commit bc5d906

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

examples/ch11/snippets_ipynb/11_02.09.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"metadata": {},
5050
"outputs": [],
5151
"source": [
52-
"from textblob import Word"
52+
"from textblob import TextBlob"
5353
]
5454
},
5555
{

examples/ch11/snippets_py/11_02.09.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
word.correct() # chooses word with the highest confidence value
99

10-
from textblob import Word
10+
from textblob import TextBlob
1111

1212
sentence = TextBlob('Ths sentense has missplled wrds.')
1313

0 commit comments

Comments
 (0)