aboutsummaryrefslogtreecommitdiffstats
path: root/ext/bigdecimal
diff options
context:
space:
mode:
authorayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-19 19:19:46 +0000
committerayumin <ayumin@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-19 19:19:46 +0000
commit6f072a36c0e27e99194158fd9cf87abda7853fe1 (patch)
treef4c616c2252a33bfb2d523ef4f3246787f1d2d5c /ext/bigdecimal
parent62565929b35484fd9d4d6adf7cea8f71a12f71b6 (diff)
downloadruby-6f072a36c0e27e99194158fd9cf87abda7853fe1.tar.gz
* ext/bigdecimal/bigdecimal.c: fixed typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39830 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/bigdecimal')
-rw-r--r--ext/bigdecimal/bigdecimal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index 414f124c44..4535da878d 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -5255,7 +5255,7 @@ VpCtoV(Real *a, const char *int_chr, size_t ni, const char *frac, size_t nf, con
ef = eb / (SIGNED_VALUE)BASE_FIG;
ef = eb - ef * (SIGNED_VALUE)BASE_FIG;
if (ef) {
- ++j; /* Means to add one more preceeding zero */
+ ++j; /* Means to add one more preceding zero */
++e;
}
}