summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/bigdecimal/bigdecimal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c
index ffa705dada..e7eb7e4b3d 100644
--- a/ext/bigdecimal/bigdecimal.c
+++ b/ext/bigdecimal/bigdecimal.c
@@ -733,10 +733,10 @@ check_rounding_mode(VALUE const v)
* Aliased as +:up+.
* - +ROUND_DOWN+: Round toward zero.
* Aliased as +:down+ and +:truncate+.
- * - +ROUND_HALF_UP+: Round toward the nearer neighbor;
+ * - +ROUND_HALF_UP+: Round toward the nearest neighbor;
* if the neighbors are equidistant, round away from zero.
* Aliased as +:half_up+ and +:default+.
- * - +ROUND_HALF_DOWN+: Round toward the nearer neighbor;
+ * - +ROUND_HALF_DOWN+: Round toward the nearest neighbor;
* if the neighbors are equidistant, round toward from zero.
* Aliased as +:half_down+.
* - +ROUND_HALF_EVEN+ (Banker's rounding): Round toward the nearest neighbor;