diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-12-19 06:01:42 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-12-19 06:01:42 -0800 |
| commit | c514b3697db145aad65bcb261b3edb20fcc39523 (patch) | |
| tree | cdcc379c467ba0ae68269258549835a16402c447 /src/numeric.c | |
| parent | 8cd42f64665b08fb35ee7fb5e69057be07dc7c76 (diff) | |
| parent | 01fb0f02d541251cbb4fe1d81e8a90a05ce39c39 (diff) | |
| download | mruby-c514b3697db145aad65bcb261b3edb20fcc39523.tar.gz mruby-c514b3697db145aad65bcb261b3edb20fcc39523.zip | |
Merge pull request #1610 from mruby-debian/for-upstream
Fix typo from expornent to exponent
Diffstat (limited to 'src/numeric.c')
| -rw-r--r-- | src/numeric.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numeric.c b/src/numeric.c index 4a22c23c7..db90d81fb 100644 --- a/src/numeric.c +++ b/src/numeric.c @@ -193,7 +193,7 @@ mrb_flo_to_str(mrb_state *mrb, mrb_value flo, int max_digit) } 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; |
