@@ -227,8 +227,8 @@ contains
227
227
elemental function fibonacci_hash( key, nbits ) result( sample )
228
228
!! Version: experimental
229
229
!!
230
- !! Maps the 32 bit integer KEY to an unsigned integer value with only NBITS
231
- !! bits where NBITS is less than 32
230
+ !! Maps the 32 bit integer `key` to an unsigned integer value with only `nbits`
231
+ !! bits where `nbits` is less than 32
232
232
!! ([Specification](../page/specs/stdlib_hash_procedures.html#fibonacci_hash-maps-an-integer-to-a-smaller-number-of-bits))
233
233
234
234
integer(int32), intent(in) :: key
@@ -242,8 +242,8 @@ contains
242
242
elemental function universal_mult_hash( key, seed, nbits ) result( sample )
243
243
!! Version: experimental
244
244
!!
245
- !! Uses the "random" odd 32 bit integer SEED to map the 32 bit integer KEY to
246
- !! an unsigned integer value with only NBITS bits where NBITS is less than 32
245
+ !! Uses the "random" odd 32 bit integer `seed` to map the 32 bit integer `key` to
246
+ !! an unsigned integer value with only `nbits` bits where `nbits` is less than 32
247
247
!! ([Specification](../page/specs/stdlib_hash_procedures.html#universal_mult_hash-maps-an-integer-to-a-smaller-number-of-bits))
248
248
integer(int32), intent(in) :: key
249
249
integer(int32), intent(in) :: seed
@@ -257,8 +257,8 @@ contains
257
257
subroutine odd_random_integer( harvest )
258
258
!! Version: experimental
259
259
!!
260
- !! Returns a 32 bit pseudo random integer, HARVEST , distributed uniformly over
261
- !! the odd integers of the INT32 kind.
260
+ !! Returns a 32 bit pseudo random integer, `harvest` , distributed uniformly over
261
+ !! the odd integers of the `int32` kind.
262
262
!! ([Specification](../page/specs/stdlib_hash_procedures.html#odd_random_integer-returns-an-odd-integer))
263
263
integer(int32), intent(out) :: harvest
264
264
real(dp) :: sample
0 commit comments