From db8bd8ae45c1f11557004ef74b8c0d192968e254 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Thu, 3 Dec 2020 12:22:01 +0000 Subject: [PATCH] Update doc comment in `JSTypedArray.swift` --- Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift b/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift index ce00cc736..a3d43aff6 100644 --- a/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift +++ b/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift @@ -11,7 +11,7 @@ public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValu } /// 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. -/// FIXME: the BigInt-based TypedArrays are not supported (https://github.com/swiftwasm/JavaScriptKit/issues/56) +/// FIXME: [BigInt-based TypedArrays are currently not supported](https://github.com/swiftwasm/JavaScriptKit/issues/56). public class JSTypedArray: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement { public static var constructor: JSFunction { Element.typedArrayClass } public var jsObject: JSObject