From a0367fb742c51505ea9147702e95bdadb122ffc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20H=C3=A4drich?= <11225821+shaedrich@users.noreply.github.com> Date: Mon, 27 May 2024 17:27:34 +0200 Subject: [PATCH] Fix typo (#4518) number instead of number type --- packages/random/random.pony | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/random/random.pony b/packages/random/random.pony index e42eaa9da1..a850918717 100644 --- a/packages/random/random.pony +++ b/packages/random/random.pony @@ -21,7 +21,7 @@ type Rand is XorOshiro128Plus trait Random """ The `Random` trait should be implemented by all random number generators. The - only method you need to implement is `fun ref next(): 64`. Once that method + only method you need to implement is `fun ref next(): U64`. Once that method has been implemented, the `Random` trait provides default implementations of conversions to other number types. """