From 010b7f06f4ba2910389b726c841bb9b5deb30775 Mon Sep 17 00:00:00 2001 From: Christian Hernandez Date: Tue, 10 Dec 2024 16:49:00 +0100 Subject: [PATCH] [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.