Skip to content
Open

typo #181

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
8 changes: 4 additions & 4 deletions docs/Sentiment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ To inquiry the polarity of a word, we can just call its own attribute
Entity Sentiment
----------------

We can calculate a more sphosticated sentiment score for an entity that
We can calculate a more sophisticated sentiment score for an entity that
is mentioned in text as the following:

.. code:: python
Expand All @@ -110,9 +110,9 @@ is mentioned in text as the following:
"Reports indicate he will move next to New Hampshire.")
text = Text(blob)

First, we need split the text into sentneces, this will limit the words
tha affect the sentiment of an entity to the words mentioned in the
sentnece.
First, we need split the text into sentences, this will limit the words
that affect the sentiment of an entity to the words mentioned in the
sentence.

.. code:: python

Expand Down