From 49f0fae6352b630dde292bcdfb80d552d5703379 Mon Sep 17 00:00:00 2001 From: Ahmed Tchagnaou <45699578+Authentic10@users.noreply.github.com> Date: Mon, 6 Sep 2021 08:14:18 +0200 Subject: [PATCH] Corrected a typo On line 106, "us" was used instead of "use" --- 6-NLP/3-Translation-Sentiment/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-NLP/3-Translation-Sentiment/README.md b/6-NLP/3-Translation-Sentiment/README.md index dd6bd1bf..e60bd955 100644 --- a/6-NLP/3-Translation-Sentiment/README.md +++ b/6-NLP/3-Translation-Sentiment/README.md @@ -103,7 +103,7 @@ Sentiment is measured in with a *polarity* of -1 to 1, meaning -1 is the most ne Take another look at Jane Austen's *Pride and Prejudice*. The text is available here at [Project Gutenberg](https://www.gutenberg.org/files/1342/1342-h/1342-h.htm). The sample below shows a short program which analyses the sentiment of first and last sentences from the book and display its sentiment polarity and subjectivity/objectivity score. -You should us the `TextBlob` library (described above) to determine `sentiment` (you do not have to write your own sentiment calculator) in the following task. +You should use the `TextBlob` library (described above) to determine `sentiment` (you do not have to write your own sentiment calculator) in the following task. ```python from textblob import TextBlob