summaryrefslogtreecommitdiff
path: root/Lisp/libobjcl.lisp
diff options
context:
space:
mode:
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