From 99ce19a8053a93457885f32ec54c1c5b7c1961c1 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Mon, 1 Aug 2022 18:49:14 -0700 Subject: Rename the compiler in bytecode.rs. --- bytecode/src/bytecode.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bytecode/src') 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); -- cgit v1.3.1