File tree 1 file changed +4
-4
lines changed 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -130,9 +130,9 @@ Functions for integers
130
130
131
131
The positional argument pattern matches the :func: `range ` function.
132
132
133
- Keyword arguments should not be used because they can interpreted
134
- in unexpected ways. For example ``range (start=100) `` is interpreted
135
- as ``range (0, 100, 1) ``.
133
+ Keyword arguments should not be used because they can be interpreted
134
+ in unexpected ways. For example ``randrange (start=100) `` is interpreted
135
+ as ``randrange (0, 100, 1) ``.
136
136
137
137
.. versionchanged :: 3.2
138
138
:meth: `randrange ` is more sophisticated about producing equally distributed
@@ -152,7 +152,7 @@ Functions for integers
152
152
.. function :: getrandbits(k)
153
153
154
154
Returns a non-negative Python integer with *k * random bits. This method
155
- is supplied with the MersenneTwister generator and some other generators
155
+ is supplied with the Mersenne Twister generator and some other generators
156
156
may also provide it as an optional part of the API. When available,
157
157
:meth: `getrandbits ` enables :meth: `randrange ` to handle arbitrarily large
158
158
ranges.
You can’t perform that action at this time.
0 commit comments