From 1f54fc1e775509924c8de19d7d71a847c264751c Mon Sep 17 00:00:00 2001 From: Erin Date: Sat, 22 Jul 2023 02:29:05 +0200 Subject: [PATCH] Edits. --- hbasm/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hbasm/src/lib.rs b/hbasm/src/lib.rs index b779937..cd137e4 100644 --- a/hbasm/src/lib.rs +++ b/hbasm/src/lib.rs @@ -58,8 +58,8 @@ impl Assembler { /// /// There was an issue. You cannot statically check register values and /// `JAL` instruction could hop at the end of program to some byte, which - /// will be interpreted as opcode and VM in attempt to decode the instruction - /// performed out-of-bounds read which leads to undefined behaviour. + /// will be interpreted as some valid opcode and VM in attempt to decode + /// the instruction performed out-of-bounds read which leads to undefined behaviour. /// /// Several options were considered to overcome this, but inserting some data at /// program's end which when executed would lead to undesired behaviour, though