From b8923ff0e586fc7ca9bb3d77e1364f002823a5a9 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 27 Apr 2017 12:25:35 -0500 Subject: [PATCH] Fixed typo: "strig" to "string" Fixed a typo like a true programming prodigy. --- 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