documentation(round): Fixed a minor typing mistake.

This commit is contained in:
Eric-Paul Ickhorn 2024-05-23 01:20:07 +02:00
parent 4244cf107b
commit d54bf3fe28
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ uint64_t ufn_floor_pow2(uint64_t value);
/// @note Internally, this uses the 'ufn_floor_pow2'-function but multiplies /// @note Internally, this uses the 'ufn_floor_pow2'-function but multiplies
/// its result by two to get the next higher power. /// its result by two to get the next higher power.
/// @param value Value to round up to the next power of 2. /// @param value Value to round up to the next power of 2.
/// @return Power of 2 which is the nearest higher one from 'value'/ /// @return Power of 2 which is the nearest higher one from 'value'.
uint64_t ufn_ceil_pow2(uint64_t value); uint64_t ufn_ceil_pow2(uint64_t value);
#ifdef UFN_IMPLEMENTATION #ifdef UFN_IMPLEMENTATION