Skip to content

Commit fe6653d

Browse files
Fix Attribute identifier init (#22)
Co-authored-by: Jason Jobe <[email protected]>
1 parent 47a6e57 commit fe6653d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/MacroToolkit/Attribute.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public struct Attribute {
1414
public init(named name: String) {
1515
_syntax = AttributeSyntax(
1616
attributeName: IdentifierTypeSyntax(
17-
name: .identifier("DictionaryStorage")
17+
name: .identifier(name)
1818
)
1919
)
2020
}

0 commit comments

Comments
 (0)