Fix bug in 8-token parser features

This commit is contained in:
Matthew Honnibal 2017-10-28 23:01:35 +00:00
parent b713d10d97
commit a0c7dabb72
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ cdef cppclass StateC:
ids[3] = this.S(1)
ids[4] = this.H(this.S(0))
ids[5] = this.L(this.B(0), 1)
ids[6] = this.L(this.S(0), 2)
ids[6] = this.L(this.S(0), 1)
ids[7] = this.R(this.S(0), 1)
elif n == 13:
ids[0] = this.B(0)