From 697b60fbab85bf5064c50cb8755ff9d39ab9eb0f Mon Sep 17 00:00:00 2001 From: Ryan Matthews Date: Mon, 5 Feb 2018 16:17:54 -0500 Subject: [PATCH] Typo correction in Readme file Missing the "sm" in the en_core_web_....load() call. --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a47084254..a50d9bd70 100644 --- a/README.rst +++ b/README.rst @@ -218,7 +218,7 @@ then call its ``load()`` method: import spacy import en_core_web_sm - nlp = en_core_web_.load() + nlp = en_core_web_sm.load() doc = nlp(u'This is a sentence.') 📖 **For more info and examples, check out the**