From 010b7f06f4ba2910389b726c841bb9b5deb30775 Mon Sep 17 00:00:00 2001 From: Christian Hernandez Date: Tue, 10 Dec 2024 16:49:00 +0100 Subject: [PATCH 1/2] [docs] Typo fix Signed-off-by: Christian Hernandez --- docs/manual/decorators/parameter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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. From ef5768fdc1d9432dec54ba711faac76559aa00a2 Mon Sep 17 00:00:00 2001 From: Christian Hernandez Date: Tue, 10 Dec 2024 17:46:23 +0100 Subject: [PATCH 2/2] Fix formatting issue Signed-off-by: Christian Hernandez --- stdlib/test/python/my_module.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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):