From e27ac61c838677c9a148a6f8b3340eb38d47fb8a Mon Sep 17 00:00:00 2001 From: Masahiro Masuda Date: Wed, 13 Jul 2022 18:07:59 +0900 Subject: [PATCH] fix in code example --- rfcs/0077-async-pipeline.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfcs/0077-async-pipeline.md b/rfcs/0077-async-pipeline.md index 9809b94a..cbf16c6f 100644 --- a/rfcs/0077-async-pipeline.md +++ b/rfcs/0077-async-pipeline.md @@ -71,7 +71,7 @@ for i in range(16): sch.annotate(i, "software_pipeline_stage", [0, 1]) ... -# "0" refers to the first element in te list [0, 1] above, i.e. the first block +# "0" refers to the 0-th stage, corresponding to the first element in the list [0, 1]. sch.annotate(i, "software_pipeline_async_stages", [0]) ```