Skip to content

Commit 3e65ed4

Browse files
committed
Update README.md
1 parent 8e6badb commit 3e65ed4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The created function is a regular JavaScript function, you can use it like regul
7070

7171
```js
7272
myFunc();
73-
// Result: [0, 1, 2, 3, ... 100]
73+
// Result: [0, 1, 2, 3, ... 99]
7474
```
7575

7676
Note: Instead of creating an object, you can use the chainable shortcut methods as a neater way of specificying options.
@@ -81,7 +81,7 @@ var myFunc = gpu.createKernel(function() {
8181
}).dimensions([100]);
8282

8383
myFunc();
84-
// Result: [0, 1, 2, 3, ... 100]
84+
// Result: [0, 1, 2, 3, ... 99]
8585
```
8686
### Accepting Input
8787

0 commit comments

Comments
 (0)