docs:修复 int32 出错的注释
This commit is contained in:
parent
0bbd542e71
commit
e1612de365
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user