diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2022-10-19 01:14:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-19 01:14:41 (GMT) |
commit | a53f637368c1e3b8bc5513cb2b0c3d7a3dff321a (patch) | |
tree | 80a55bcbb4423bc1947c136665f9a739b60b3340 | |
parent | fcae1954a2ad009d23fc4170b40dcfb2d0e1a153 (diff) | |
download | cpython-a53f637368c1e3b8bc5513cb2b0c3d7a3dff321a.zip cpython-a53f637368c1e3b8bc5513cb2b0c3d7a3dff321a.tar.gz cpython-a53f637368c1e3b8bc5513cb2b0c3d7a3dff321a.tar.bz2 |
Fix markup indentation (GH-98424)
Fix markup
-rw-r--r-- | Doc/library/itertools.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/itertools.rst b/Doc/library/itertools.rst index 07bb086..4f5b61c 100644 --- a/Doc/library/itertools.rst +++ b/Doc/library/itertools.rst @@ -198,7 +198,7 @@ loops that truncate the stream. while (batch := list(islice(it, n))): yield batch - .. versionadded:: 3.12 + .. versionadded:: 3.12 .. function:: chain(*iterables) |