fix typo in comment

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39022 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2015-10-03 17:11:00 +00:00
parent fa3b26e91c
commit 91d3484e9b

View file

@ -2022,7 +2022,7 @@ static id gs_weak_load(id obj)
* The method must be one which takes one argument and returns an object.
* <br />Raises NSInvalidArgumentException if given a null selector.
*/
- (id) performSelector: (SEL)aSelector withObject: (id) anObject
- (id) performSelector: (SEL)aSelector withObject: (id)anObject
{
IMP msg;
@ -2033,7 +2033,7 @@ static id gs_weak_load(id obj)
/* The Apple runtime API would do:
* msg = class_getMethodImplementation(object_getClass(self), aSelector);
* but this cannot ask self for information about any method reached by
* forwarding, so the returned forwarding function would ge a generic one
* forwarding, so the returned forwarding function would be a generic one
* rather than one aware of hardware issues with returning structures
* and floating points. We therefore prefer the GNU API which is able to
* use forwarding callbacks to get better type information.