From 1c97c9fb411de91c8aef6837a495d240f7df92cd Mon Sep 17 00:00:00 2001 From: Ryan Jones-Ward Date: Tue, 4 Feb 2025 11:31:14 +0000 Subject: [PATCH] Comment update. --- redox-core/src/parsing/asm_parser.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redox-core/src/parsing/asm_parser.rs b/redox-core/src/parsing/asm_parser.rs index 3024ef1..9a0d2e6 100644 --- a/redox-core/src/parsing/asm_parser.rs +++ b/redox-core/src/parsing/asm_parser.rs @@ -268,7 +268,7 @@ impl<'a> AsmParser<'a> { value_found = true; } - // Could the argument be a u8 immediate. + // Could the argument be a u8 immediate? if let Ok(val) = AsmParser::try_parse_u8_immediate(substring) { if !value_found { arguments.push(Argument::UnsignedInt(val as u128)); @@ -283,7 +283,7 @@ impl<'a> AsmParser<'a> { value_found = true; } - // Could the argument could be a u32 immediate. + // Could the argument could be a u32 immediate? if let Ok(val) = AsmParser::try_parse_u32_immediate(substring) { if !value_found { arguments.push(Argument::UnsignedInt(val as u128));