From 26bc75134db09b87dbc77a0afd40506b0b2b6059 Mon Sep 17 00:00:00 2001 From: ines Date: Thu, 8 Feb 2018 11:28:44 +0100 Subject: [PATCH] Fix typo --- website/api/matcher.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/api/matcher.jade b/website/api/matcher.jade index 95a51a1d6..2418dd2fa 100644 --- a/website/api/matcher.jade +++ b/website/api/matcher.jade @@ -89,7 +89,7 @@ p Match a stream of documents, yielding them in turn. +aside-code("Example"). from spacy.matcher import Matcher matcher = Matcher(nlp.vocab) - for doc in matcher.pipe(texts, batch_size=50, n_threads=4): + for doc in matcher.pipe(docs, batch_size=50, n_threads=4): pass +table(["Name", "Type", "Description"])