Skip to content

Commit 7028519

Browse files
committed
Fix example
1 parent ce7dc28 commit 7028519

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
```javascript
88

9+
linspace(2, 3, 5)
10+
// => [ 2, 2.25, 2.5, 2.75, 3 ]
11+
912
linspace(2, 3, 4, {endpoint: false})
1013
// => [ 2, 2.25, 2.5, 2.75 ]
1114

12-
linspace(2, 3, 5, {endpoint: false})
13-
// => [ 2, 2.25, 2.5, 2.75, 3 ]
14-
1515
linspace(2, 4, 10, {dtype: 'int8'})
1616
// => [ 2, 2, 2, 2, 2, 3, 3, 3, 3, 4 ]
1717

0 commit comments

Comments
 (0)