1
0
This commit is contained in:
Jeff 2023-11-06 19:15:22 -05:00
parent f0cb4631ab
commit 6006de13e5
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ use tree_sitter::Node;
use crate::{
value_node::ValueNode, AbstractTree, BuiltInFunction, Error, Identifier, Index, Map, Result,
Sublist, Value,
Value,
};
use super::{function_call::FunctionCall, logic::Logic, math::Math};

View File

@ -24,9 +24,9 @@ pub mod map;
pub mod table;
pub mod value_type;
/// Whale value representation.
/// Dust value representation.
///
/// Every whale variable has a key and a Value. Variables are represented by
/// Every dust variable has a key and a Value. Variables are represented by
/// storing them in a VariableMap. This means the map of variables is itself a
/// value that can be treated as any other.
#[derive(Debug, Clone, Default)]