mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix spelling errors in comments.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18261 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
4f2941499d
commit
62673068d0
6 changed files with 17 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-12-23 18:15 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Documentation/news.texi, Headers/Foundation/NSDebug.h,
|
||||
Source/GSPrivate.h, Source/externs.m, Tools/plist-0_9.dtd: Fix
|
||||
spelling errors in comments.
|
||||
|
||||
2003-12-06 12:34 Alexander Malmberg <alexander@malmberg.org>
|
||||
|
||||
* Headers/Foundation/NSGeometry.h (NSContainsRect): Return NO
|
||||
|
|
|
@ -26,7 +26,7 @@ and ownership of data.
|
|||
|
||||
@section Noteworthy changes in version @samp{1.8.0}
|
||||
|
||||
Read the NEWS file for a compete list of changes since the last stable
|
||||
Read the NEWS file for a complete list of changes since the last stable
|
||||
version. The major change is that the header files (both in the
|
||||
package and when installed) are in different locations. Also, due to
|
||||
filesystem changes in gnustep-make, several components of gnustep-base
|
||||
|
|
|
@ -137,7 +137,7 @@ GS_EXPORT NSArray *GSDebugAllocationListRecordedObjects(Class c);
|
|||
* This function associates the supplied tag with a recorded
|
||||
* object and returns the tag which was previously associated
|
||||
* with it (if any).<br />
|
||||
* If the object was not recorded, the method reurns nil<br />
|
||||
* If the object was not recorded, the method returns nil<br />
|
||||
* The tag is retained while it is associated with the object.<br />
|
||||
* See also the NSDebugFRLog() and NSDebugMRLog() macros.
|
||||
*/
|
||||
|
|
|
@ -51,15 +51,15 @@
|
|||
/**
|
||||
* Macro to consistently replace public accessable
|
||||
* constant strings with dynamically allocated versions.
|
||||
* This method assumes an initialzed NSStringClass symbol
|
||||
* This method assumes an initialized NSStringClass symbol
|
||||
* which contains the Class object of NSString. <br>
|
||||
* Most public accesable strings are used in collection classes
|
||||
* like NSDictionary, and therefor tend to receive -isEqual:
|
||||
* Most public accessible strings are used in collection classes
|
||||
* like NSDictionary, and therefore tend to receive -isEqual:
|
||||
* messages (and therefore -hash) rather often. Statically
|
||||
* allocated strings must calculate thier hash values where
|
||||
* allocated strings must calculate their hash values while
|
||||
* dynamically allocated strings can store them. This optimization
|
||||
* is by far more effective than using NSString * const.
|
||||
* The backdraw is that the memory managent cannot enforce these values
|
||||
* is by far more effective than using NSString * const.
|
||||
* The drawback is that the memory management cannot enforce these values
|
||||
* to remain unaltered as it would for variables declared NSString * const.
|
||||
* Yet the optimization of the stored hash value is currently deemed
|
||||
* more important.
|
||||
|
|
|
@ -191,7 +191,7 @@ NSString *NSClassDescriptionNeededForClassNotification = @"NSClassDescriptionNee
|
|||
|
||||
|
||||
/*
|
||||
* Opimization function called when NSObject is initialised.
|
||||
* Optimization function called when NSObject is initialised.
|
||||
* We replace all the constant strings so they can
|
||||
* cache their hash values and be used much more efficiently as keys in
|
||||
* dictionaries etc.
|
||||
|
|
|
@ -57,10 +57,10 @@
|
|||
<!ELEMENT key (#PCDATA)>
|
||||
|
||||
<!-- A string of characters.
|
||||
Not all unicodee characters are legal in PCDATA in XML,
|
||||
Not all unicode characters are legal in PCDATA in XML,
|
||||
so an escape mechanism is provided. A string containing
|
||||
a sequence of the form \UXXXX or \uXXXX (where XXXX is a
|
||||
hexadecimal number) will be replaced by thew appropriate
|
||||
hexadecimal number) will be replaced by the appropriate
|
||||
unicode character after the property list is parsed.
|
||||
-->
|
||||
<!ELEMENT string (#PCDATA)>
|
||||
|
|
Loading…
Reference in a new issue