summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorBurdetteLamar <BurdetteLamar@Yahoo.com>2021-11-12 09:52:10 -0600
committerKenta Murata <mrkn@mrkn.jp>2021-12-24 02:28:54 +0900
commited7f4c24d73333a716ce7944a465f430a7f7f910 (patch)
tree99900a6f778c3bc9b6a41a53a17afc4573c6ee6d /ext
parented8ec5dcb3f7fec60cb7fa38a3f1135d50d3bcde (diff)
[ruby/bigdecimal] Respond to review
https://github.com/ruby/bigdecimal/commit/f528a0006e
Diffstat (limited to 'ext')
-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 e7eb7e4b3d..8a107386a4 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -737,7 +737,7 @@ check_rounding_mode(VALUE const v)
* if the neighbors are equidistant, round away from zero.
* Aliased as +:half_up+ and +:default+.
* - +ROUND_HALF_DOWN+: Round toward the nearest neighbor;
- * if the neighbors are equidistant, round toward from zero.
+ * if the neighbors are equidistant, round toward zero.
* Aliased as +:half_down+.
* - +ROUND_HALF_EVEN+ (Banker's rounding): Round toward the nearest neighbor;
* if the neighbors are equidistant, round toward the even neighbor.