@@ -178,13 +178,13 @@ cdef class RandomState:
178178
179179 Seed the generator.
180180
181- This method is called when `RandomState` is initialized. It can be
182- called again to re-seed the generator. For details, see `RandomState`.
181+ This method is called when `` RandomState` ` is initialized. It can be
182+ called again to re-seed the generator. For details, see `` RandomState` `.
183183
184184 Parameters
185185 ----------
186186 seed : int or array_like, optional
187- Seed for `RandomState`.
187+ Seed for `` RandomState` `.
188188 Must be convertible to 32 bit unsigned integers.
189189
190190 See Also
@@ -219,13 +219,13 @@ cdef class RandomState:
219219
220220 Seed the generator.
221221
222- This method is called when `RandomState` is initialized. It can be
223- called again to re-seed the generator. For details, see `RandomState`.
222+ This method is called when `` RandomState` ` is initialized. It can be
223+ called again to re-seed the generator. For details, see `` RandomState` `.
224224
225225 Parameters
226226 ----------
227227 val : int, optional
228- Seed for `RandomState`.
228+ Seed for `` RandomState` `.
229229
230230 Notes
231231 -----
@@ -253,13 +253,13 @@ cdef class RandomState:
253253
254254 Seed the generator.
255255
256- This method is called when `RandomState` is initialized. It can be
257- called again to re-seed the generator. For details, see `RandomState`.
256+ This method is called when `` RandomState` ` is initialized. It can be
257+ called again to re-seed the generator. For details, see `` RandomState` `.
258258
259259 Parameters
260260 ----------
261261 val : int, optional
262- Seed for `RandomState`.
262+ Seed for `` RandomState` `.
263263 inc : int, optional
264264 Increment to use for producing multiple streams
265265
@@ -363,7 +363,7 @@ cdef class RandomState:
363363
364364 Return a tuple representing the internal state of the generator.
365365
366- For more details, see `set_state`.
366+ For more details, see `` set_state` `.
367367
368368 Parameters
369369 ----------
@@ -386,7 +386,7 @@ cdef class RandomState:
386386
387387 Notes
388388 -----
389- `set_state` and `get_state` are not needed to work with any of the
389+ `` set_state`` and `` get_state` ` are not needed to work with any of the
390390 random distributions in NumPy. If the internal state is manually altered,
391391 the user should know exactly what he/she is doing.
392392
@@ -410,7 +410,7 @@ cdef class RandomState:
410410
411411 Return a tuple representing the internal state of the generator.
412412
413- For more details, see `set_state`.
413+ For more details, see `` set_state` `.
414414
415415 Returns
416416 -------
@@ -428,7 +428,7 @@ cdef class RandomState:
428428
429429 Notes
430430 -----
431- `set_state` and `get_state` are not needed to work with any of the
431+ `` set_state`` and `` get_state` ` are not needed to work with any of the
432432 random distributions in NumPy. If the internal state is manually altered,
433433 the user should know exactly what he/she is doing.
434434
@@ -471,7 +471,7 @@ cdef class RandomState:
471471
472472 Notes
473473 -----
474- `set_state` and `get_state` are not needed to work with any of the
474+ `` set_state`` and `` get_state` ` are not needed to work with any of the
475475 random distributions in NumPy. If the internal state is manually altered,
476476 the user should know exactly what he/she is doing.
477477
@@ -559,7 +559,7 @@ cdef class RandomState:
559559
560560 Results are from the "continuous uniform" distribution over the
561561 stated interval. To sample :math:`Unif[a, b), b > a` multiply
562- the output of `random_sample` by `(b-a)` and add `a`::
562+ the output of `` random_sample` ` by `(b-a)` and add `a`::
563563
564564 (b - a) * random_sample() + a
565565
0 commit comments