diff --git a/Doc/glossary.rst b/Doc/glossary.rst index b8e773741ce7e2..ace7e6405e0244 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -95,7 +95,7 @@ Glossary that it contains :keyword:`yield` expressions for producing a series of values usable in an :keyword:`async for` loop. - Usually refers to a asynchronous generator function, but may refer to an + Usually refers to an asynchronous generator function, but may refer to an *asynchronous generator iterator* in some contexts. In cases where the intended meaning isn't clear, using the full terms avoids ambiguity. @@ -389,7 +389,7 @@ Glossary An :term:`annotation` of a function parameter or return value. Function annotations are usually used for - :term:`type hints `: for example this function is expected to take two + :term:`type hints `: for example, this function is expected to take two :class:`int` arguments and is also expected to have an :class:`int` return value::