docs:修复 int32 出错的注释

This commit is contained in:
Luke 2025-06-25 16:12:22 +08:00
parent 0bbd542e71
commit e1612de365
5 changed files with 10 additions and 10 deletions

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the two integers are equal, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the two int32 are equal, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is greater than the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is greater than the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is greater than or equal to the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is greater than or equal to the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is less than the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is less than the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is less than or equal to the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is less than or equal to the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/