summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-11-09 06:29:35 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-11-09 06:29:35 -0800
commita9d8357d69773414d38bbe00e6086dfcf3008eeb (patch)
tree714345fc6b838d504247d3b0fe9c295364c1c27c
parentec0a94dae6c08b427af2df3434704cf30b6f1edb (diff)
parent0d0f3545f8f2bdf87f7c4256113e801a18b4a541 (diff)
downloadmruby-a9d8357d69773414d38bbe00e6086dfcf3008eeb.tar.gz
mruby-a9d8357d69773414d38bbe00e6086dfcf3008eeb.zip
Merge pull request #1566 from carsonmcdonald/supresstosuppress
Change supress to suppress
-rw-r--r--src/numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numeric.c b/src/numeric.c
index ccb67bcc3..4a22c23c7 100644
--- a/src/numeric.c
+++ b/src/numeric.c
@@ -1071,7 +1071,7 @@ mrb_flo_to_fixnum(mrb_state *mrb, mrb_value x)
if (mrb_float_p(x)) {
mrb_raise(mrb, E_TYPE_ERROR, "non float value");
- z = 0; /* not reached. just supress warnings. */
+ z = 0; /* not reached. just suppress warnings. */
}
else {
mrb_float d = mrb_float(x);