docs: 修改拼写错误

This commit is contained in:
zhangxun 2025-06-28 21:07:07 +08:00
parent fe9a8e7505
commit 3466c27c9e
3 changed files with 6 additions and 6 deletions

View File

@ -12,11 +12,11 @@ import org.jcnc.snow.vm.module.OperandStack;
* <p>Execution Steps:</p>
* <ol>
* <li>Pop the top double64 value from the operand stack.</li>
* <li>Convert the double64 value to an short16 value (this may involve truncation).</li>
* <li>Convert the double64 value to a short16 value (this may involve truncation).</li>
* <li>Push the converted short16 value back onto the operand stack for subsequent operations.</li>
* </ol>
*
* <p>This opcode is used to narrow a double64 value to an short16 type for further integer-based operations.</p>
* <p>This opcode is used to narrow a double64 value to a short16 type for further integer-based operations.</p>
*/
public class D2SCommand implements Command {

View File

@ -12,11 +12,11 @@ import org.jcnc.snow.vm.module.OperandStack;
* <p>Execution Steps:</p>
* <ol>
* <li>Pop the top short16 value from the operand stack.</li>
* <li>Convert the short16 value to an double64 value.</li>
* <li>Convert the short16 value to a double64 value.</li>
* <li>Push the converted double64 value back onto the operand stack for subsequent operations.</li>
* </ol>
*
* <p>This opcode is used to widen a short16 value to an double64 type, facilitating subsequent integer arithmetic or comparison operations.</p>
* <p>This opcode is used to widen a short16 value to a double64 type, facilitating subsequent integer arithmetic or comparison operations.</p>
*/
public class S2DCommand implements Command {

View File

@ -12,11 +12,11 @@ import org.jcnc.snow.vm.module.OperandStack;
* <p>Execution Steps:</p>
* <ol>
* <li>Pop the top short16 value from the operand stack.</li>
* <li>Convert the short16 value to an float32 value.</li>
* <li>Convert the short16 value to a float32 value.</li>
* <li>Push the converted float32 value back onto the operand stack for subsequent operations.</li>
* </ol>
*
* <p>This opcode is used to widen a short16 value to an float32 type, facilitating subsequent integer arithmetic or comparison operations.</p>
* <p>This opcode is used to widen a short16 value to a float32 type, facilitating subsequent integer arithmetic or comparison operations.</p>
*/
public class S2FCommand implements Command {