Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Waygood <[email protected]>
  • Loading branch information
carljm and AlexWaygood authored Jun 2, 2024
1 parent b1775b1 commit 1a71a72
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/spec/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ This section defines a few terms that may be used elsewhere in the specification

consistent subtype
"Consistent subtype" is synonymous with ":term:`assignable` to" (and
"consistent supertype" is synonymous with ":term:`assignable` from"). See
"consistent supertype" is synonymous with "assignable from"). See
:ref:`type-system-concepts`.

distribution
Expand All @@ -53,7 +53,7 @@ This section defines a few terms that may be used elsewhere in the specification
A gradual form is a :term:`type expression` which makes the type it is
part of not a :term:`fully static type`, but rather a representation of a
set of possible static types. See :ref:`type-system-concepts`. The
primary gradual form is :ref:`Any`. The ellipsis (`...`) is a gradual
primary gradual form is :ref:`Any`. The ellipsis (``...``) is a gradual
form in some, but not all, contexts. It is a gradual form when used in a
:ref:`Callable` type, and when used in ``tuple[Any, ...]`` (but not in
other :ref:`tuple <tuples>` types).
Expand All @@ -64,7 +64,7 @@ This section defines a few terms that may be used elsewhere in the specification
contains ``Any`` or another :term:`gradual form`. A gradual type does not
necessarily represent a single set of possible runtime values; instead it
can represent a set of possible static types (a set of possible sets of
possible runtime values!). Gradual types do not participate in the
possible runtime values). Gradual types do not participate in the
:term:`subtype` relation, but they do participate in :term:`consistency
<consistent>` and :term:`assignability <assignable>`. They can be
:term:`materialized <materialize>` to a more static, or fully static,
Expand Down

0 comments on commit 1a71a72

Please sign in to comment.