From 2eea0f45d39d749ea08d4ba10d69de79f11c9a88 Mon Sep 17 00:00:00 2001 From: "gabriel.pettier" Date: Sat, 18 Aug 2012 11:21:14 +0200 Subject: [PATCH] fix grammar errors in some comments --- jnius/jnius.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jnius/jnius.pyx b/jnius/jnius.pyx index 34a208b..9190746 100644 --- a/jnius/jnius.pyx +++ b/jnius/jnius.pyx @@ -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