Typo correction in Readme file

Missing the "sm" in the en_core_web_....load() call.
This commit is contained in:
Ryan Matthews 2018-02-05 16:17:54 -05:00 committed by GitHub
parent 2e7391e627
commit 697b60fbab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -218,7 +218,7 @@ then call its ``load()`` method:
import spacy import spacy
import en_core_web_sm import en_core_web_sm
nlp = en_core_web_.load() nlp = en_core_web_sm.load()
doc = nlp(u'This is a sentence.') doc = nlp(u'This is a sentence.')
📖 **For more info and examples, check out the** 📖 **For more info and examples, check out the**