From 45d5ce273671f961ca7a035e6384ea9081ed7c17 Mon Sep 17 00:00:00 2001 From: Florimond Manca Date: Sat, 12 Oct 2019 14:23:05 +0200 Subject: [PATCH] Fix typo in last_iter() docstring --- mkautodoc/extension.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkautodoc/extension.py b/mkautodoc/extension.py index db64fd4..7426d99 100644 --- a/mkautodoc/extension.py +++ b/mkautodoc/extension.py @@ -66,7 +66,7 @@ def get_params(signature: inspect.Signature) -> typing.List[str]: def last_iter(seq: typing.Sequence) -> typing.Iterator: """ - Given an sequence, return a two-tuple (item, is_last) iterable. + Given a sequence, return a two-tuple (item, is_last) iterable. See: https://stackoverflow.com/a/1633483/596689 """