Skip to content

Commit

Permalink
Fix typo of word calculate (#2677)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccouzens authored Dec 4, 2023
1 parent c722c6a commit b19bd87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion live-examples/wat-examples/numeric/abs.wat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(func $main

f32.const -10 ;; load a number onto the stack
f32.abs ;; caluculate the absolute value
f32.abs ;; calculate the absolute value
call $log ;; log the result

)
Expand Down
2 changes: 1 addition & 1 deletion live-examples/wat-examples/numeric/max.wat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
f32.const 10
f32.const 2

f32.max ;; caluculat the higher number
f32.max ;; calculate the higher number
call $log ;; log the result
)
(start $main)
Expand Down
2 changes: 1 addition & 1 deletion live-examples/wat-examples/numeric/min.wat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
f32.const 10
f32.const 2

f32.min ;; caluculat the lower number
f32.min ;; calculate the lower number
call $log ;; log the result
)
(start $main)
Expand Down

0 comments on commit b19bd87

Please sign in to comment.