File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -129,14 +129,14 @@ So, our `person` class doesn't explicitly inherit from another class
129129the class ` t ` and from ` standard-object ` . See below under
130130"inheritance".
131131
132- We could write a minimal class definition without slots options like this:
132+ We could write a minimal class definition without slot options like this:
133133
134134~~~ lisp
135135(defclass point ()
136136 (x y z))
137137~~~
138138
139- or even without slots specifiers: ` (defclass point () ()) ` .
139+ or even without slot specifiers: ` (defclass point () ()) ` .
140140
141141### Creating objects (make-instance)
142142
@@ -406,7 +406,7 @@ The [closer-mop](https://github.com/pcostanza/closer-mop) library is *the*
406406portable way to do CLOS/MOP operations.
407407
408408
409- A subclass inherits all of its parents slots, and it can override any
409+ A subclass inherits all of its parents' slots, and it can override any
410410of their slot options. Common Lisp makes this process dynamic, great
411411for REPL session, and we can even control parts of it (like, do
412412something when a given slot is removed/updated/added, etc).
You can’t perform that action at this time.
0 commit comments