aboutsummaryrefslogtreecommitdiffstats
path: root/bytecode/src/bytecode.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bytecode/src/bytecode.rs')
-rw-r--r--bytecode/src/bytecode.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/bytecode/src/bytecode.rs b/bytecode/src/bytecode.rs
index 6ba23cf..bde3721 100644
--- a/bytecode/src/bytecode.rs
+++ b/bytecode/src/bytecode.rs
@@ -1,8 +1,8 @@
use crate::data::Value;
use crate::heap::Heap;
-// The cute scheme virtual machine is a register based VM.
-// There are 256 registers, also called locals.
+// The Chromatopelma virtual machine is a register based VM. There are
+// 256 registers, also called locals.
#[derive(Debug, Eq, PartialEq, Clone, Copy)]
pub struct Local(pub u8);