mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-11 00:32:40 +03:00
* Rename span.right to span.rights
This commit is contained in:
parent
da9f358166
commit
8d29406cd6
|
@ -92,7 +92,7 @@ cdef class Span:
|
||||||
if left.i < self.start:
|
if left.i < self.start:
|
||||||
yield left
|
yield left
|
||||||
|
|
||||||
property right:
|
property rights:
|
||||||
"""Tokens that are to the right of the Span, whose head is within the Span."""
|
"""Tokens that are to the right of the Span, whose head is within the Span."""
|
||||||
def __get__(self):
|
def __get__(self):
|
||||||
for token in self:
|
for token in self:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user