summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-cmath
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2021-02-13 17:21:17 +1000
committerJohn Bampton <[email protected]>2021-02-13 17:21:17 +1000
commitbe40e9c783363b45a14ba70a18157385814e8b3e (patch)
tree1a3dd21c1c0f4a2898ae8f308e1cd516f4d9e717 /mrbgems/mruby-cmath
parent9a9c95986a2bb5d647f7a610c04987cd2b9397f4 (diff)
downloadmruby-be40e9c783363b45a14ba70a18157385814e8b3e.tar.gz
mruby-be40e9c783363b45a14ba70a18157385814e8b3e.zip
chore: fix spelling
Normally a single spell checker can't find all the mistakes or check all types of code. These mistakes were found by another spell checker inside my editor with a more manual sift / find.
Diffstat (limited to 'mrbgems/mruby-cmath')
-rw-r--r--mrbgems/mruby-cmath/mrbgem.rake2
-rw-r--r--mrbgems/mruby-cmath/src/cmath.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-cmath/mrbgem.rake b/mrbgems/mruby-cmath/mrbgem.rake
index e00725fef..00ac4b091 100644
--- a/mrbgems/mruby-cmath/mrbgem.rake
+++ b/mrbgems/mruby-cmath/mrbgem.rake
@@ -1,5 +1,5 @@
# This `mruby-cmath` gem uses C99 _Complex features
-# You need C compler that support C99+
+# You need C compiler that support C99+
MRuby::Gem::Specification.new('mruby-cmath') do |spec|
spec.license = 'MIT'
spec.author = 'mruby developers'
diff --git a/mrbgems/mruby-cmath/src/cmath.c b/mrbgems/mruby-cmath/src/cmath.c
index 8e94d1563..03b181840 100644
--- a/mrbgems/mruby-cmath/src/cmath.c
+++ b/mrbgems/mruby-cmath/src/cmath.c
@@ -6,7 +6,7 @@
/*
** This `mruby-cmath` gem uses C99 _Complex features
-** You need C compler that support C99+
+** You need C compiler that support C99+
*/
#include <mruby.h>