aboutsummaryrefslogtreecommitdiffstats
path: root/numeric.c
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2024-01-01 11:12:54 -0500
committerPeter Zhu <peter@peterzhu.ca>2024-01-01 11:12:54 -0500
commitc0481e5818c9f01116607d658a9b9acbd4ab0c00 (patch)
tree829e9c633277067b80655f3722a67a0bc8260f0f /numeric.c
parentc0e3c3b6feabac564523c28462e8e45c447b0f0f (diff)
downloadruby-c0481e5818c9f01116607d658a9b9acbd4ab0c00.tar.gz
[DOC] Fix indentation for Integer#div
The line was indented, which caused it to be treated as a code block.
Diffstat (limited to 'numeric.c')
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index d1d9ba758b..8ef6ce0502 100644
--- a/numeric.c
+++ b/numeric.c
@@ -4249,7 +4249,7 @@ fix_idiv(VALUE x, VALUE y)
* 4.div(3.0) # => 1
* 4.div(Rational(3, 1)) # => 1
*
- * Raises an exception if +numeric+ does not have method +div+.
+ * Raises an exception if +numeric+ does not have method +div+.
*
*/