Skip to content

Commit

Permalink
Fixed Typo
Browse files Browse the repository at this point in the history
* updated spelling in doc: evaulates should be evaluates.

Signed-off-by: Kwame Bryan <[email protected]>
  • Loading branch information
KBryan committed Feb 8, 2025
1 parent d13e944 commit 6f840c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sema/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down

0 comments on commit 6f840c1

Please sign in to comment.