Skip to content

Commit 14827c6

Browse files
committed
SwiftFormat, remove header comment
1 parent 982149d commit 14827c6

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

Sources/DOM/Customized.swift

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
1-
//
2-
// Customized.swift
3-
//
4-
//
5-
// Created by Jed Fox on 2023-01-28.
6-
//
7-
81
import Foundation
92

10-
extension HTMLFormControlsCollection {
3+
public extension HTMLFormControlsCollection {
114
// removes `override` since the superclass returns a more constrained type `Element`
12-
@inlinable public func namedItem(name: String) -> Element_or_RadioNodeList? {
5+
@inlinable func namedItem(name: String) -> Element_or_RadioNodeList? {
136
let this = jsObject
147
return this[Strings.namedItem].function!(this: this, arguments: [_toJSValue(name)]).fromJSValue()!
158
}

0 commit comments

Comments
 (0)