aboutsummaryrefslogtreecommitdiffstats
path: root/bytecode/src
diff options
context:
space:
mode:
authorRose Hogenson <rhogenson@posteo.net>2022-08-01 18:49:14 -0700
committerRose Hogenson <rhogenson@posteo.net>2022-08-01 18:49:14 -0700
commit99ce19a8053a93457885f32ec54c1c5b7c1961c1 (patch)
treefdd369e014e343b58ebfa6703803262dbe89f90f /bytecode/src
parentRename the compiler. (diff)
downloadchromatopelma-99ce19a8053a93457885f32ec54c1c5b7c1961c1.tar.zst
Rename the compiler in bytecode.rs.
Diffstat (limited to 'bytecode/src')
-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);