Skip to content

Commit 41f29ff

Browse files
committed
fix 6.0
1 parent 6e222e3 commit 41f29ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/SGML/Attributes/AttributeStore.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public struct AttributeStore: Sendable {
7070
}
7171

7272
public func get(
73-
name: String,
73+
name: String
7474
) -> String? {
7575
storage[name]?.compactMap { $0 }.sorted().joined(separator: " ")
7676
}

Sources/SGML/Traits/Attributes.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ extension Attributes where Self: Mutable {
129129
// MARK: - get
130130

131131
public func getAttribute(
132-
name: String,
132+
name: String
133133
) -> String? {
134134
attributes.get(name: name)
135135
}

0 commit comments

Comments
 (0)