mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
36b41ee794
commit
c45353112b
1 changed files with 5 additions and 1 deletions
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue