fix grammar errors in some comments

This commit is contained in:
gabriel.pettier 2012-08-18 11:21:14 +02:00
parent bb0923d77d
commit 2eea0f45d3
1 changed files with 2 additions and 2 deletions

View File

@ -637,7 +637,7 @@ cdef class JavaMethod(object):
def __get__(self, obj, objtype):
if obj is None:
return self
# XXX FIXME we MUST not change our own j_self, but return an "bounded"
# XXX FIXME we MUST not change our own j_self, but return a "bound"
# method here, as python does!
cdef JavaClass jc = obj
self.j_self = jc.j_self
@ -862,7 +862,7 @@ cdef class JavaMethodMultiple(object):
if obj is None:
self.j_self = None
return self
# XXX FIXME we MUST not change our own j_self, but return an "bounded"
# XXX FIXME we MUST not change our own j_self, but return a "bound"
# method here, as python does!
cdef JavaClass jc = obj
self.j_self = jc.j_self