From c6c799648083ce246f2e3943f0e044492f0d93cc Mon Sep 17 00:00:00 2001 From: Zicklag Date: Tue, 20 Jul 2021 12:43:36 -0500 Subject: [PATCH] Fix Documentation Typo --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 14997a7340..70c284349b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,7 +29,7 @@ A Naga backend can generate code to evaluate an `Expression` however and whenever it pleases, as long as it is certain to observe the side effects of all previously executed `Statement`s. -Many `Statement` variants use the [`Block`] type, which is simply `Vec`, +Many `Statement` variants use the [`Block`] type, which is simply `Vec`, representing a series of statements executed in order. The body of an `EntryPoint`s or `Function` is a `Block`, and `Statement` has a [`Block`][Statement::Block] variant.