Skip to content

Commit 9c93727

Browse files
committed
Remove extra space
1 parent 20a6da7 commit 9c93727

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/random/base/discrete-uniform

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/random/base/discrete-uniform/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ r = rand( -20, 20 );
9090

9191
The function accepts the following `options`:
9292

93-
- **prng**: pseudorandom number generator for generating uniformly distributed pseudorandom integers. If provided, the function **ignores** both the `state` and `seed` options. In order to seed the returned pseudorandom number generator, one must seed the provided `prng` (assuming the provided `prng` is seedable). The provided PRNG **must** have `MIN` and `MAX` properties specifying the minimum and maximum possible pseudorandom integers.
93+
- **prng**: pseudorandom number generator for generating uniformly distributed pseudorandom integers. If provided, the function **ignores** both the `state` and `seed` options. In order to seed the returned pseudorandom number generator, one must seed the provided `prng` (assuming the provided `prng` is seedable). The provided PRNG **must** have `MIN` and `MAX` properties specifying the minimum and maximum possible pseudorandom integers.
9494
- **seed**: pseudorandom number generator seed.
9595
- **state**: a [`Uint32Array`][@stdlib/array/uint32] containing pseudorandom number generator state. If provided, the function ignores the `seed` option.
9696
- **copy**: `boolean` indicating whether to copy a provided pseudorandom number generator state. Setting this option to `false` allows sharing state between two or more pseudorandom number generators. Setting this option to `true` ensures that a returned generator has exclusive control over its internal state. Default: `true`.

0 commit comments

Comments
 (0)