You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix spelling errors and trailing whitespace in documentation strings
across 10 library files. Changes include:
- "bount" → "bound" (loops.lisp)
- "interator" → "iterator" (hashmap, iterator, queue)
- "Raturns" → "Returns" (hashmap, ordmap)
- "occurence" → "occurrence" (list)
- "elmentary" → "elementary" (elementary.lisp)
- "yeilds" → "yields" (slice)
- "imples" → "implies" (classes)
- "is sometimes goes" → "sometimes goes" (list)
- Missing/extra periods and trailing spaces
AI was used to help identify these typos. All changes have been
manually reviewed against the source code.
Co-Authored-By: Claude Opus 4.6 <[email protected]>
Copy file name to clipboardExpand all lines: library/classes.lisp
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -308,11 +308,11 @@ together."
308
308
;;
309
309
310
310
(define-class (Into :a:b)
311
-
"`INTO` imples *every* element of `:a` can be represented by an element of `:b`. This conversion might not be bijective (i.e., there may be elements in `:b` that don't correspond to any in `:a`)."
311
+
"`INTO` implies *every* element of `:a` can be represented by an element of `:b`. This conversion might not be bijective (i.e., there may be elements in `:b` that don't correspond to any in `:a`)."
312
312
(into (:a -> :b)))
313
313
314
314
(define-class ((Into :a:b) (Into :b:a) => Iso :a:b)
315
-
"Opting into this marker typeclass imples that the instances for `(Into :a :b)` and `(Into :b :a)` form a bijection.")
315
+
"Opting into this marker typeclass implies that the instances for `(Into :a :b)` and `(Into :b :a)` form a bijection.")
"The result of evaluating `body` with `variable` bound to a `UFix` in [0, `count`) that is `better?` than the result of evaluating `body` with `variable` bound to the rest of the `UFix`s in [0, `count`).."
323
+
"The result of evaluating `body` with `variable` bound to a `UFix` in [0, `count`) that is `better?` than the result of evaluating `body` with `variable` bound to the rest of the `UFix`s in [0, `count`)."
0 commit comments