From e0524c19eb44030bfca5c50d9226a814a35164b1 Mon Sep 17 00:00:00 2001 From: lyken Date: Tue, 27 Aug 2024 17:40:27 +0800 Subject: [PATCH] Newline "Otherwise, it will be caught..." --- nac3core/src/codegen/model/structure.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nac3core/src/codegen/model/structure.rs b/nac3core/src/codegen/model/structure.rs index c91f42aa..4b5ab2ae 100644 --- a/nac3core/src/codegen/model/structure.rs +++ b/nac3core/src/codegen/model/structure.rs @@ -100,7 +100,8 @@ impl<'ctx, 'a, G: CodeGenerator + ?Sized> FieldTraversal<'ctx> self.errors .push(err.under_context(format!("field #{gep_index} '{name}'").as_str())); } - } // Otherwise, it will be caught by Struct's `check_type`. + } + // Otherwise, it will be caught by Struct's `check_type`. } }