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:
CaS 2003-03-25 19:19:27 +00:00
parent 1f6a32e95b
commit 1e7c2c5df4

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