From 6ae8e49bff3bd9c67c0bd1ee0b5c7e31596ef9ac Mon Sep 17 00:00:00 2001 From: Shooter23 <44271378+Shooter23@users.noreply.github.com> Date: Fri, 14 Dec 2018 04:11:11 -0500 Subject: [PATCH] Fix docstring for is_right_punct(). (#3044) --- spacy/tokens/token.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/tokens/token.pyx b/spacy/tokens/token.pyx index 647505547..381aa2aa8 100644 --- a/spacy/tokens/token.pyx +++ b/spacy/tokens/token.pyx @@ -854,7 +854,7 @@ cdef class Token: return Lexeme.c_check_flag(self.c.lex, IS_LEFT_PUNCT) property is_right_punct: - """RETURNS (bool): Whether the token is a left punctuation mark.""" + """RETURNS (bool): Whether the token is a right punctuation mark.""" def __get__(self): return Lexeme.c_check_flag(self.c.lex, IS_RIGHT_PUNCT)