Commit 01fb0f02 authored by Nobuhiro Iwamatsu's avatar Nobuhiro Iwamatsu

Fix typo from expornent to exponent

Signed-off-by: default avatarNobuhiro Iwamatsu <iwamatsu@nigauri.org>
parent 8cd42f64
...@@ -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