From 7ff036022356e37740c67eb7804afcbe7ce2852c Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 15 Jan 2015 08:16:01 +0100 Subject: [PATCH] Closes #23244: fix typo. Thanks Mayank Tripathi for the patch. --- Doc/glossary.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/glossary.rst b/Doc/glossary.rst index 5d69dd499b..010fdf204b 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -284,7 +284,7 @@ Glossary generator A function which returns an iterator. It looks like a normal function except that it contains :keyword:`yield` statements for producing a series - a values usable in a for-loop or that can be retrieved one at a time with + of values usable in a for-loop or that can be retrieved one at a time with the :func:`next` function. Each :keyword:`yield` temporarily suspends processing, remembering the location execution state (including local variables and pending try-statements). When the generator resumes, it -- 2.50.1