Location
https://docs.swift.org/swift-book/documentation/the-swift-programming-language/attributes/#attached
Description
The documentation for the @attached macro attribute states the following:
The peer, member, and accessor macro roles require a names: argument, listing the names of the symbols that the macro generates.
But in reality, accessor macros do not require the names: argument as they simply generate accessors for the stored property they're attached to. (See discussion on the Swift forums)
Correction
The sentence should be changed to:
The peer and member macro roles require a names: argument, listing the names of the symbols that the macro generates.