From d8705c5d50c8db4ff015dbef2ebbf99c5d788d70 Mon Sep 17 00:00:00 2001 From: Jeff Date: Fri, 16 Feb 2024 11:00:27 -0500 Subject: [PATCH] Fix docs --- src/context.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/context.rs b/src/context.rs index 67d0d9f..40430a2 100644 --- a/src/context.rs +++ b/src/context.rs @@ -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. //! //! ## Setting values @@ -144,7 +144,7 @@ impl Context { 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. /// See the [module-level docs][self] for more info.