This commit is contained in:
Jeff 2024-02-16 11:00:27 -05:00
parent c466096c8d
commit d8705c5d50

View File

@ -1,4 +1,4 @@
//! An execution context that store variables and type data during the //! An execution context that stores variables and type data during the
//! [Interpreter][crate::Interpreter]'s abstraction and execution process. //! [Interpreter][crate::Interpreter]'s abstraction and execution process.
//! //!
//! ## Setting values //! ## Setting values
@ -144,7 +144,7 @@ impl Context {
Ok(None) Ok(None)
} }
/// Get a value from the context. /// Get a type definition from the context.
/// ///
/// This will also return a built-in type definition if one matches the key. /// This will also return a built-in type definition if one matches the key.
/// See the [module-level docs][self] for more info. /// See the [module-level docs][self] for more info.