diff --git a/docs/manual/decorators/parameter.md b/docs/manual/decorators/parameter.md index c82d9c6783..2b9f27e9e0 100644 --- a/docs/manual/decorators/parameter.md +++ b/docs/manual/decorators/parameter.md @@ -29,9 +29,9 @@ this will be included in the binary ## Parametric for statement -You can add the `@parameter` decorator to an `for` loop to create a loop that's +You can add the `@parameter` decorator to a `for` loop to create a loop that's evaluated at compile time. The loop sequence and induction values must be -a valid parameter expressions (that is, an expressions that evaluate at compile +valid parameter expressions (that is, expressions that evaluate at compile time). This has the effect of "unrolling" the loop. diff --git a/stdlib/test/python/my_module.py b/stdlib/test/python/my_module.py index 8147b0a382..c78c39556e 100644 --- a/stdlib/test/python/my_module.py +++ b/stdlib/test/python/my_module.py @@ -25,7 +25,8 @@ def __init__(self, bar): class AbstractPerson(ABC): @abstractmethod - def method(self): ... + def method(self): + ... def my_function(name):