From 0fd265e3f317bdf2292393779c60b3587beb60a9 Mon Sep 17 00:00:00 2001 From: kadarakos Date: Tue, 22 Nov 2022 16:52:23 +0000 Subject: [PATCH] typo --- spacy/cli/apply.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/apply.py b/spacy/cli/apply.py index 5d65faf3b..7d7becf58 100644 --- a/spacy/cli/apply.py +++ b/spacy/cli/apply.py @@ -29,7 +29,7 @@ code_help = ("Path to Python file with additional " "code (registered functions) to be imported") gold_help = "Use gold preprocessing provided in the .spacy files" force_msg = ("The provided output file already exists. " - "To force overwriting the config file, set the --force or -F flag.") + "To force overwriting the output file, set the --force or -F flag.") DocOrStrStream = Union[Iterable[str], Iterable[Doc]]