Skip to content

Commit 59e7b65

Browse files
authored
Fix wrong markdown in documentation (#221)
Fix wrong markdown
1 parent dbf7a88 commit 59e7b65

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: Sources/JavaScriptKit/BasicObjects/JSTypedArray.swift

+3-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ public protocol TypedArrayElement: ConvertibleToJSValue, ConstructibleFromJSValu
1010
static var typedArrayClass: JSFunction { get }
1111
}
1212

13-
/// A wrapper around all [JavaScript `TypedArray`(https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray)
14-
/// classes] that exposes their properties in a type-safe way.
13+
/// A wrapper around all [JavaScript `TypedArray`
14+
/// classes](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypedArray)
15+
/// that exposes their properties in a type-safe way.
1516
public class JSTypedArray<Element>: JSBridgedClass, ExpressibleByArrayLiteral where Element: TypedArrayElement {
1617
public class var constructor: JSFunction? { Element.typedArrayClass }
1718
public var jsObject: JSObject

0 commit comments

Comments
 (0)