From 37bb8261794ad434a45705774da87b1bc80d49ff Mon Sep 17 00:00:00 2001 From: gibachan Date: Sat, 24 Dec 2022 23:06:45 +0900 Subject: [PATCH] Fix wrong markdown --- Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift b/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift index ee564ae51..c22e6c8cc 100644 --- a/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift +++ b/Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift @@ -10,8 +10,9 @@ public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValu static var typedArrayClass: JSFunction { get } } -/// 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. +/// A wrapper around all [JavaScript `TypedArray` +/// classes](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) +/// that exposes their properties in a type-safe way. public class JSTypedArray: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement { public class var constructor: JSFunction? { Element.typedArrayClass } public var jsObject: JSObject