mirror of https://github.com/kivy/pyjnius.git
fix grammar errors in some comments
This commit is contained in:
parent
bb0923d77d
commit
2eea0f45d3
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue