diff --git a/docs/source/index.rst b/docs/source/index.rst index c2c4e44d0..ab554438d 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -184,7 +184,7 @@ adverbs to. Recall that our previous adverb highlighting function looked like this: >>> import spacy.en - >>> from spacy.postags import ADVERB + >>> from spacy.parts_of_speech import ADVERB >>> # Load the pipeline, and call it with some text. >>> nlp = spacy.en.English() >>> tokens = nlp("‘Give it back,’ he pleaded abjectly, ‘it’s mine.’", @@ -206,7 +206,7 @@ problematic, given our starting assumptions: >>> from numpy import dot >>> from numpy.linalg import norm >>> import spacy.en - >>> from spacy.postags import ADVERB, VERB + >>> from spacy.parts_of_speech import ADVERB, VERB >>> def is_bad_adverb(token, target_verb, tol): ... if token.pos != ADVERB ... return False