From 2d1a208c0e147e7ecce1c4c48bf85186a0edc233 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 4 Sep 2021 08:07:58 +1000 Subject: [PATCH] docs: fix simple typo, strig -> string There is a small typo in ner/client.py. Should read `string` rather than `strig`. --- ner/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ner/client.py b/ner/client.py index a532b8d..19253e3 100644 --- a/ner/client.py +++ b/ner/client.py @@ -144,7 +144,7 @@ def __init__(self, host='localhost', port=1234, location='/stanford-ner/ner', def tag_text(self, text): """Tag the text with proper named entities token-by-token. - :param text: raw text strig to tag + :param text: raw text string to tag :returns: tagged text in given output format """ for s in ('\f', '\n', '\r', '\t', '\v'): #strip whitespaces