From 23c1f6fc0424ded909210125f681366cafa5b673 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 17 Feb 2015 22:07:44 -0500 Subject: [PATCH] * Merge changes from stash --- spacy/tokens.pyx | 1 + 1 file changed, 1 insertion(+) diff --git a/spacy/tokens.pyx b/spacy/tokens.pyx index f2b0c0149..f5683780e 100644 --- a/spacy/tokens.pyx +++ b/spacy/tokens.pyx @@ -338,6 +338,7 @@ cdef class Token: while ptr != self.c: if ptr + ptr.head == self.c: n += 1 + ptr += 1 return n property n_rights: