summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-04-18 07:44:23 +0300
committerGitHub <noreply@github.com>2022-04-18 07:44:23 +0300
commit42c9c9ecaa75f8476a13a8ea023f1a8a540eb549 (patch)
tree85437c25e71135693ae7bdfe97691b86ab516ec2
parentbb811f454ace65dd5ca05316b3b791ce2e213e2a (diff)
parent9fb9175f023bd367b840257a69476c866fcda651 (diff)
downloadnumpy-42c9c9ecaa75f8476a13a8ea023f1a8a540eb549.tar.gz
Merge pull request #21352 from hexagonrecursion/patch-1
Doc: Philox.jumped correct the formula
-rw-r--r--numpy/random/_philox.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/random/_philox.pyx b/numpy/random/_philox.pyx
index 0fe8ebd7c..d9a366e86 100644
--- a/numpy/random/_philox.pyx
+++ b/numpy/random/_philox.pyx
@@ -266,8 +266,8 @@ cdef class Philox(BitGenerator):
Returns a new bit generator with the state jumped
- The state of the returned big generator is jumped as-if
- 2**(128 * jumps) random numbers have been generated.
+ The state of the returned bit generator is jumped as-if
+ (2**128) * jumps random numbers have been generated.
Parameters
----------