summaryrefslogtreecommitdiff
path: root/Lisp/libobjcl.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2007-08-04 18:50:14 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2007-08-04 18:50:14 +0200
commit39df905ad0ca7fe6bc4e893fb0a2d793f45a9ab8 (patch)
tree08726ddc098b773263ae5ba7ce46b6cb1893e194 /Lisp/libobjcl.lisp
parentcb4496f15f5fad35ab42c1061746ee7753e0d3f8 (diff)
Properly document INVOKE and INVOKE-BY-NAME.
darcs-hash:f0d069d3c295135cad49752aeb05f96cefd9a753
Diffstat (limited to 'Lisp/libobjcl.lisp')
-rw-r--r--Lisp/libobjcl.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lisp/libobjcl.lisp b/Lisp/libobjcl.lisp
index 6f3b52a..bf246be 100644
--- a/Lisp/libobjcl.lisp
+++ b/Lisp/libobjcl.lisp
@@ -73,15 +73,17 @@ converted into a string according to the following rules:
2. Any additional components have all of their letters converted to
lower case, except for their first letters, which are left intact.
-After this, the components are concatenated in order and the resulting
+After that, the components are concatenated in order and the resulting
string used as if directly given as an argument to FIND-OBJC-CLASS.
+
Examples:
(find-objc-class \"NSObject\") ;=> #<OBJC-CLASS NSObject>
(find-objc-class 'ns-object) ;=> #<OBJC-CLASS NSObject>
(find-objc-class 'nsobject) ;=> NIL
+
Rationale:
The first component of an Objective C class name is conventionally