Skip to content

Commit c742a6f

Browse files
committed
docs: rename variable
1 parent 6fa2c20 commit c742a6f

File tree

1 file changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/math/base/tools/evalpoly/docs

1 file changed

+3
-3
lines changed

lib/node_modules/@stdlib/math/base/tools/evalpoly/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040

4141
Examples
4242
--------
43-
> var polyval = {{alias}}.factory( [ 3.0, 2.0, 1.0 ] );
43+
> var f = {{alias}}.factory( [ 3.0, 2.0, 1.0 ] );
4444

4545
// 3*10^0 + 2*10^1 + 1*10^2
46-
> var v = polyval( 10.0 )
46+
> var v = f( 10.0 )
4747
123.0
4848

4949
// 3*5^0 + 2*5^1 + 1*5^2
50-
> v = polyval( 5.0 )
50+
> v = f( 5.0 )
5151
38.0
5252

5353
See Also

0 commit comments

Comments
 (0)