Doc fixes

This commit is contained in:
BurdetteLamar 2024-07-07 22:43:23 +01:00 committed by Peter Zhu
parent ae6a2d0641
commit a57b4340d0
2 changed files with 5 additions and 13 deletions

View file

@ -5805,8 +5805,6 @@ int_floor(int argc, VALUE* argv, VALUE num)
* | -4 | 10000 | 10000 |
* | -5 | 100000 | 100000 |
*
* <br>
*
* Examples with negative `self`:
*
* | ndigits | Granularity | -1234.ceil(ndigits) |
@ -5817,8 +5815,6 @@ int_floor(int argc, VALUE* argv, VALUE num)
* | -4 | 10000 | 0 |
* | -5 | 100000 | 0 |
*
* <br>
*
* Related: Integer#floor.
*/