From 16a2c26e47da3612f07b6a01408e67ed2bbd1a48 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Fri, 10 Feb 2023 11:28:06 +0100 Subject: [PATCH] Tweak wording --- website/docs/usage/processing-pipelines.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/usage/processing-pipelines.mdx b/website/docs/usage/processing-pipelines.mdx index 973a80ef3..2be077fb8 100644 --- a/website/docs/usage/processing-pipelines.mdx +++ b/website/docs/usage/processing-pipelines.mdx @@ -89,8 +89,8 @@ have to call `list()` on it first: You can use the [`nlp.pipe_as_tuples`](/api/language#pipe_as_tuples) method to -pass additional context along with each doc when using the functionality of -[`nlp.pipe`](/api/language#pipe). The input should be a sequence of +pass additional context along with each doc when using the same functionality +as in [`nlp.pipe`](/api/language#pipe). The input should be a sequence of `(text, context)` tuples and the output will be a sequence of `(doc, context)` tuples. For example, you can pass metadata in the context and save it in a [custom attribute](#custom-components-attributes):