10000 bigdecimal.c: fix a typo · nobu/ruby@64b6e9a · GitHub
[go: up one dir, main page]

Skip to content

Commit 64b6e9a

Browse files
committed
bigdecimal.c: fix a typo
* ext/bigdecimal/bigdecimal.c (VpSetPTR): fix a typo, 'expoennt' to 'exponent'. [ruby-core:67980] [Bug ruby#10823] [Fix rubyGH-825] svn: 49491
1 parent dd63652 commit 64b6e9a

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Wed Feb 4 16:32:40 2015 Matt Hoyle <matt@deployable.co>
2+
3+
* ext/bigdecimal/bigdecimal.c (VpSetPTR): fix a typo, 'expoennt'
4+
to 'exponent'. [ruby-core:67980] [Bug #10823] [Fix GH-825]
5+
16
Thu Feb 19 01:58:10 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
27

38
* win32/file.c (rb_file_expand_path_internal): neither the drive

ext/bigdecimal/bigdecimal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4418,7 +4418,7 @@ VpSetPTR(Real *a, Real *b, Real *c, size_t *a_pos, size_t *b_pos, size_t *c_pos,
44184418

44194419
size_t const round_limit = (VpGetPrecLimit() + BASE_FIG - 1) / BASE_FIG;
44204420

4421-
assert(a->exponent >= b->expoennt);
4421+
assert(a->exponent >= b->exponent);
44224422

44234423
c->frac[0] = 0;
44244424
*av = *bv = 0;

0 commit comments

Comments
 (0)
294A
0