diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCECommand.java
index 33ecbfc..9eb73e3 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.utils.LoggingUtils;
*
*
Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the two integers are equal, jumps to the target command.
+ * - Pops two long64 from the virtual machine stack.
+ * - If the two long64 are equal, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGCommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGCommand.java
index c9abdee..83b99e4 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGCommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGCommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.utils.LoggingUtils;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is greater than the second, jumps to the target command.
+ * - Pops two long64 from the virtual machine stack.
+ * - If the first long64 is greater than the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGECommand.java
index 89f50d3..3ce9e90 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCGECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.utils.LoggingUtils;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is greater than or equal to the second, jumps to the target command.
+ * - Pops two long64 from the virtual machine stack.
+ * - If the first long64 is greater than or equal to the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLCommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLCommand.java
index 1467371..b52eb64 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLCommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLCommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.utils.LoggingUtils;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is less than the second, jumps to the target command.
+ * - Pops two long64 from the virtual machine stack.
+ * - If the first long64 is less than the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLECommand.java
index 634b183..e585fd7 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCLECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.utils.LoggingUtils;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the first integer is less than or equal to the second, jumps to the target command.
+ * - Pops two long64 from the virtual machine stack.
+ * - If the first long64 is less than or equal to the second, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/
diff --git a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCNECommand.java b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCNECommand.java
index 7aba528..4031630 100644
--- a/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCNECommand.java
+++ b/src/main/java/org/jcnc/snow/vm/commands/control/long64/LCNECommand.java
@@ -12,8 +12,8 @@ import org.jcnc.snow.vm.utils.LoggingUtils;
*
* Specific behavior:
*
- * - Pops two integers from the virtual machine stack.
- * - If the two integers are not equal, jumps to the target command.
+ * - Pops two long64 from the virtual machine stack.
+ * - If the two long64 are not equal, jumps to the target command.
* - Otherwise, the program continues with the next command.
*
*/