From baf48a5f7797fad1f3defbfe0a376616cb638411 Mon Sep 17 00:00:00 2001 From: Chris Couzens Date: Sun, 3 Dec 2023 13:23:52 +0000 Subject: [PATCH] Fix typo of word calculate --- live-examples/wat-examples/numeric/abs.wat | 2 +- live-examples/wat-examples/numeric/max.wat | 2 +- live-examples/wat-examples/numeric/min.wat | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/live-examples/wat-examples/numeric/abs.wat b/live-examples/wat-examples/numeric/abs.wat index aeab04966..4f9d62419 100644 --- a/live-examples/wat-examples/numeric/abs.wat +++ b/live-examples/wat-examples/numeric/abs.wat @@ -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 ) diff --git a/live-examples/wat-examples/numeric/max.wat b/live-examples/wat-examples/numeric/max.wat index e10301de3..953c20cfe 100644 --- a/live-examples/wat-examples/numeric/max.wat +++ b/live-examples/wat-examples/numeric/max.wat @@ -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) diff --git a/live-examples/wat-examples/numeric/min.wat b/live-examples/wat-examples/numeric/min.wat index 3ffe9bd2a..d78796fcf 100644 --- a/live-examples/wat-examples/numeric/min.wat +++ b/live-examples/wat-examples/numeric/min.wat @@ -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)