Fix typo and improve comments

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16263 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2003-03-25 19:19:27 +00:00
parent 36b41ee794
commit c45353112b

View file

@ -1120,6 +1120,10 @@ static void unescape(const char *from, char * to)
* The specified client (if non-nil) will be set up to receive
* notifications of the progress of the background load process.
* </p>
* <p>
* The processes current run loop must be run in order for the
* background load operation to operate!
* </p>
*/
- (void) loadResourceDataNotifyingClient: (id)client
usingCache: (BOOL)shouldUseCache
@ -1561,7 +1565,7 @@ static void unescape(const char *from, char * to)
if (c != nil)
{
if ([c respondsToSelector: @selector(URLResourceDidFinishLoading:g:)])
if ([c respondsToSelector: @selector(URLResourceDidFinishLoading:)])
{
[c URLResourceDidFinishLoading: self];
}