docs:修复 long64 出错的注释

This commit is contained in:
Luke 2025-06-25 16:08:27 +08:00
parent 28e2a38c14
commit 70189d1b80
6 changed files with 12 additions and 12 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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