summaryrefslogtreecommitdiff
path: root/doc/examples/example.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/example.py')
-rw-r--r--doc/examples/example.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/example.py b/doc/examples/example.py
index ae5293af..6c9e2f14 100644
--- a/doc/examples/example.py
+++ b/doc/examples/example.py
@@ -4,7 +4,7 @@ from typing import Iterator
class Math:
@staticmethod
def fib(n: int) -> Iterator[int]:
- """ Fibonacci series up to n """
+ """Fibonacci series up to n."""
a, b = 0, 1
while a < n:
yield a