Skip to content

Commit

Permalink
Fix description of INTO
Browse files Browse the repository at this point in the history
  • Loading branch information
gahr authored and stylewarning committed Jun 13, 2023
1 parent e5e42a0 commit 7819a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/classes.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@
;;

(define-class (Into :a :b)
"INTO imples *every* element of :a can be represented by an element of :b. This conversion might not be injective (i.e., there may be elements in :a that don't correspond to any in :b)."
"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)."
(into (:a -> :b)))

(define-class ((Into :a :b) (Into :b :a) => Iso :a :b)
Expand Down

0 comments on commit 7819a1f

Please sign in to comment.