Skip to content

Commit 4e22a37

Browse files
Remove non-existant MDN links
1 parent 6033816 commit 4e22a37

File tree

2 files changed

+22
-26
lines changed

2 files changed

+22
-26
lines changed

packages/@rescript/runtime/Stdlib_TypedArray.res

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ type t<'a>
55
`get(typedArray, index)` returns the element at `index` of `typedArray`.
66
Returns `None` if the index does not exist in the typed array. Equivalent to doing `typedArray[index]` in JavaScript.
77
8-
See [`TypedArray.prototype.at`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/at) on MDN.
9-
108
## Examples
119
1210
```rescript
@@ -23,8 +21,6 @@ external get: (t<'a>, int) => option<'a> = ""
2321
2422
Beware this will *mutate* the array.
2523
26-
See [`TypedArray.prototype.set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set) on MDN.
27-
2824
## Examples
2925
3026
```rescript

0 commit comments

Comments
 (0)