From 1803c7b2af8fde615b81ac21a6dc56e56dc20594 Mon Sep 17 00:00:00 2001 From: Scott Gasch Date: Wed, 6 Jul 2022 09:58:12 -0700 Subject: [PATCH] Update docs. --- iter_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iter_utils.py b/iter_utils.py index 8cd204d..c6daddf 100644 --- a/iter_utils.py +++ b/iter_utils.py @@ -17,9 +17,9 @@ from typing import Any, List, Optional class PeekingIterator(Iterator): - """An iterator that lets you peek() at the next item on deck. + """An iterator that lets you :meth:`peek` at the next item on deck. Returns None when there is no next item (i.e. when - __next__() will produce a StopIteration exception). + :meth:`__next__` will produce a StopIteration exception). >>> p = PeekingIterator(iter(range(3))) >>> p.__next__() -- 2.46.0