Skip to content

Commit a415353

Browse files
Merge pull request #110 from swiftwasm/jstypedarray-doccomment
Update doc comment in `JSTypedArray.swift`
2 parents b7a0243 + db8bd8a commit a415353

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValu
1111
}
1212

1313
/// A wrapper around all JavaScript [TypedArray](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) classes that exposes their properties in a type-safe way.
14-
/// FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56)
14+
/// FIXME: [BigInt-based TypedArrays are currently not supported](https://github.com/swiftwasm/JavaScriptKit/issues/56).
1515
public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement {
1616
public static var constructor: JSFunction { Element.typedArrayClass }
1717
public var jsObject: JSObject

0 commit comments

Comments
 (0)