Commit c514b369 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #1610 from mruby-debian/for-upstream

Fix typo from expornent to exponent
parents 8cd42f64 01fb0f02
...@@ -193,7 +193,7 @@ mrb_flo_to_str(mrb_state *mrb, mrb_value flo, int max_digit) ...@@ -193,7 +193,7 @@ mrb_flo_to_str(mrb_state *mrb, mrb_value flo, int max_digit)
} }
if (exp >= 100) { if (exp >= 100) {
mrb_raise(mrb, E_RANGE_ERROR, "Too large expornent."); mrb_raise(mrb, E_RANGE_ERROR, "Too large exponent.");
} }
*(c++) = '0' + exp / 10; *(c++) = '0' + exp / 10;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment