Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo of word calculate #2677

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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