diff --git a/src/main/java/org/jcnc/snow/vm/commands/type/conversion/D2SCommand.java b/src/main/java/org/jcnc/snow/vm/commands/type/conversion/D2SCommand.java index ab11cf0..41a8cec 100644 --- a/src/main/java/org/jcnc/snow/vm/commands/type/conversion/D2SCommand.java +++ b/src/main/java/org/jcnc/snow/vm/commands/type/conversion/D2SCommand.java @@ -12,11 +12,11 @@ import org.jcnc.snow.vm.module.OperandStack; *
Execution Steps:
*This opcode is used to narrow a double64 value to an short16 type for further integer-based operations.
+ *This opcode is used to narrow a double64 value to a short16 type for further integer-based operations.
*/ public class D2SCommand implements Command { diff --git a/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2DCommand.java b/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2DCommand.java index 2f3381f..7703f26 100644 --- a/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2DCommand.java +++ b/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2DCommand.java @@ -12,11 +12,11 @@ import org.jcnc.snow.vm.module.OperandStack; *Execution Steps:
*This opcode is used to widen a short16 value to an double64 type, facilitating subsequent integer arithmetic or comparison operations.
+ *This opcode is used to widen a short16 value to a double64 type, facilitating subsequent integer arithmetic or comparison operations.
*/ public class S2DCommand implements Command { diff --git a/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2FCommand.java b/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2FCommand.java index 78fbb4a..478e397 100644 --- a/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2FCommand.java +++ b/src/main/java/org/jcnc/snow/vm/commands/type/conversion/S2FCommand.java @@ -12,11 +12,11 @@ import org.jcnc.snow.vm.module.OperandStack; *Execution Steps:
*This opcode is used to widen a short16 value to an float32 type, facilitating subsequent integer arithmetic or comparison operations.
+ *This opcode is used to widen a short16 value to a float32 type, facilitating subsequent integer arithmetic or comparison operations.
*/ public class S2FCommand implements Command {