From e1e8a4ddc12e8ec3257bd52591b6ab0221c084c9 Mon Sep 17 00:00:00 2001 From: Rerumu Date: Mon, 29 Aug 2022 14:08:32 -0400 Subject: [PATCH] Rename for consistency --- wasm-ast/src/factory.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wasm-ast/src/factory.rs b/wasm-ast/src/factory.rs index d4e3ee4..2963164 100644 --- a/wasm-ast/src/factory.rs +++ b/wasm-ast/src/factory.rs @@ -38,7 +38,7 @@ enum BlockData { impl Default for BlockData { fn default() -> Self { - BlockData::Forward { num_result: 0 } + Self::Forward { num_result: 0 } } }