Skip to content

Commit 389bd7f

Browse files
authored
fix typos in builtin.rs doc (#1739)
Signed-off-by: Kwame Bryan <kwame.bryan@gmail.com> * fixed typo in builtin.rs
1 parent c6db2ac commit 389bd7f

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
@@ -79,7 +79,7 @@ pub static BUILTIN_FUNCTIONS: Lazy<[Prototype; 29]> = Lazy::new(|| {
7979
params: vec![Type::Bool],
8080
ret: vec![Type::Void],
8181
target: vec![],
82-
doc: "Abort execution if argument evaulates to false",
82+
doc: "Abort execution if argument evaluates to false",
8383
constant: false,
8484
},
8585
Prototype {
@@ -90,7 +90,7 @@ pub static BUILTIN_FUNCTIONS: Lazy<[Prototype; 29]> = Lazy::new(|| {
9090
params: vec![Type::Bool, Type::String],
9191
ret: vec![Type::Void],
9292
target: vec![],
93-
doc: "Abort execution if argument evaulates to false. Report string when aborting",
93+
doc: "Abort execution if argument evaluates to false. Report string when aborting",
9494
constant: false,
9595
},
9696
Prototype {

0 commit comments

Comments
 (0)