[DOC] Use backticks instead of HTML tags

This commit is contained in:
Peter Zhu 2024-07-08 19:38:00 -04:00
Родитель 5de6d0b35f
Коммит ab3fa8dece
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -5722,7 +5722,7 @@ int_round(int argc, VALUE* argv, VALUE num)
* - When `self` is non-zero and `ndigits` is negative,
* returns a value based on a computed granularity:
*
* - The granularity is <tt>10 ** ndigits.abs</tt>.
* - The granularity is `10 ** ndigits.abs`.
* - The returned value is the largest multiple of the granularity
* that is less than or equal to `self`.
*
@ -5791,7 +5791,7 @@ int_floor(int argc, VALUE* argv, VALUE num)
* - When `self` is non-zero and `ndigits` is negative,
* returns a value based on a computed granularity:
*
* - The granularity is <tt>10 ** ndigits.abs</tt>.
* - The granularity is `10 ** ndigits.abs`.
* - The returned value is the smallest multiple of the granularity
* that is greater than or equal to `self`.
*