aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/algebra/coerce.spad.pamphlet6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/algebra/coerce.spad.pamphlet b/src/algebra/coerce.spad.pamphlet
index e8fb6b36..bc066cda 100644
--- a/src/algebra/coerce.spad.pamphlet
+++ b/src/algebra/coerce.spad.pamphlet
@@ -70,8 +70,7 @@ CoercibleTo(S:Type): Category == with
++ See Also: CoercibleTo
++ Description:
++ A is coercible from B iff any element of domain B can be
-++ automically converted into an element of domain B. In symbols
-++ A has CoercibleFrom B <=> B has CoercibleTo A
+++ automically converted into an element of domain A.
CoercibleFrom(S: Type): Category == with
coerce: S -> %
++ coerce(s) transforms `s' into an element of `%'.
@@ -124,8 +123,7 @@ ConvertibleTo(S:Type): Category == with
++ See Also: ConvertibleTo
++ Description:
++ A is convertible from B iff any element of domain B can be
-++ explicitly converted into an element of domain B. In symbols
-++ A has ConvertibleFrom B <=> B has ConvertibleTo A
+++ explicitly converted into an element of domain A.
ConvertibleFrom(S: Type): Category == with
convert: S -> %
++ convert(s) transforms `s' into an element of `%'.