Tweak comments for error in documentation

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23866 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2006-10-13 19:10:56 +00:00
parent 471c3b6660
commit 0bd39b2bd4
2 changed files with 5 additions and 4 deletions

View file

@ -713,7 +713,7 @@ NSString * const NSFileHandleOperationException
NSString *path;
path = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory,
NSSystemDomainMask, NO) lastObject];
NSAllDomainsMask, NO) lastObject];
path = [path stringByAppendingPathComponent: @"Bundles"];
path = [path stringByAppendingPathComponent: @"SSL.bundle"];
bundle = [NSBundle bundleWithPath: path];

View file

@ -20,7 +20,8 @@
You should have received a copy of the GNU Library General Public
License along with this library; if not, write to the Free
Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111 USA.
Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02111 USA.
<title>NSTimer class reference</title>
$Date$ $Revision$
@ -121,7 +122,7 @@ static Class NSDate_class;
/**
* Create a timer which will fire after ti seconds and, if f is YES,
* every ti seconds thereafter. On firing, the target object will be
* sent a message specified by selector and with the value info as an
* sent a message specified by selector and with the timer as its
* argument.<br />
* NB. To make the timer operate, you must add it to a run loop.
*/
@ -159,7 +160,7 @@ static Class NSDate_class;
/**
* Create a timer which will fire after ti seconds and, if f is YES,
* every ti seconds thereafter. On firing, the target object will be
* sent a message specified by selector and with the object info as an
* sent a message specified by selector and with the timer as its
* argument.<br />
* This timer will automatically be added to the current run loop and
* will fire in the default run loop mode.