Rename bang->apply

! syntax item has been referred to as "bang" instead of "apply" in some
places, this is fixed

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-01-12 22:14:54 -08:00
parent 90f27a4108
commit 88080c750b
4 changed files with 9 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ pub struct NativeFrame {
#[derive(Debug, Clone)]
pub struct QuoteFrame {
locals: BTreeMap<Word, Option<Value>>,
code: Rc<Vec<Inst>>, // TODO - deduplicate this with some kind of shared pointer
code: Rc<Vec<Inst>>,
pc: usize,
}