From 70e51fabcb75aa62bf76d97d59880ce9bbf764bb Mon Sep 17 00:00:00 2001 From: Kwame Bryan Date: Mon, 10 Feb 2025 11:45:57 -0500 Subject: [PATCH] fix typos in builtin.rs doc Signed-off-by: Kwame Bryan * fixed typo --- src/sema/builtin.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sema/builtin.rs b/src/sema/builtin.rs index cc3ee66ee..87765993e 100644 --- a/src/sema/builtin.rs +++ b/src/sema/builtin.rs @@ -68,7 +68,7 @@ pub static BUILTIN_FUNCTIONS: Lazy<[Prototype; 27]> = Lazy::new(|| { params: vec![Type::Bool], ret: vec![Type::Void], target: vec![], - doc: "Abort execution if argument evaulates to false", + doc: "Abort execution if argument evaluates to false", constant: false, }, Prototype { @@ -79,7 +79,7 @@ pub static BUILTIN_FUNCTIONS: Lazy<[Prototype; 27]> = Lazy::new(|| { params: vec![Type::Bool, Type::String], ret: vec![Type::Void], target: vec![], - doc: "Abort execution if argument evaulates to false. Report string when aborting", + doc: "Abort execution if argument evaluates to false. Report string when aborting", constant: false, }, Prototype {