Skip to content

Commit 11b34fc

Browse files
committed
Fix missing var keyword
1 parent 2fa6b5b commit 11b34fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/math/base/random/randn/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
--------
4242
// Basic usage:
4343
> var rand = {{alias}}.factory();
44-
> r = rand();
44+
> var r = rand();
4545
> r = rand();
4646

4747
// Specify alternative PRNG:

lib/node_modules/@stdlib/math/base/random/randu/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
--------
4242
// Basic usage:
4343
> var rand = {{alias}}.factory();
44-
> r = rand();
44+
> var r = rand();
4545
> r = rand();
4646

4747
// Specify alternative PRNG:

0 commit comments

Comments
 (0)