Skip to content

Commit 6f840c1

Browse files
committed
Fixed Typo
* updated spelling in doc: evaulates should be evaluates. Signed-off-by: Kwame Bryan <kwame.bryan@gmail.com>
1 parent d13e944 commit 6f840c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sema/builtin.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub static BUILTIN_FUNCTIONS: Lazy<[Prototype; 27]> = Lazy::new(|| {
6868
params: vec![Type::Bool],
6969
ret: vec![Type::Void],
7070
target: vec![],
71-
doc: "Abort execution if argument evaulates to false",
71+
doc: "Abort execution if argument evaluates to false",
7272
constant: false,
7373
},
7474
Prototype {
@@ -79,7 +79,7 @@ pub static BUILTIN_FUNCTIONS: Lazy<[Prototype; 27]> = Lazy::new(|| {
7979
params: vec![Type::Bool, Type::String],
8080
ret: vec![Type::Void],
8181
target: vec![],
82-
doc: "Abort execution if argument evaulates to false. Report string when aborting",
82+
doc: "Abort execution if argument evaluates to false. Report string when aborting",
8383
constant: false,
8484
},
8585
Prototype {

0 commit comments

Comments
 (0)