diff --git a/proposals/0364-retroactive-conformance-warning.md b/proposals/0364-retroactive-conformance-warning.md index 6300d01b9e..1ee0161dde 100644 --- a/proposals/0364-retroactive-conformance-warning.md +++ b/proposals/0364-retroactive-conformance-warning.md @@ -113,11 +113,11 @@ use `@retroactive` outside of the declaration of a retroactive conformance. `@retroactive` is a new attribute, but it is purely additive; it can be accepted by all language versions. It does mean projects building with an older Swift will not have access to this syntax, so as a source compatible fallback, -a client can silence this warning by fully-qualifying all types in the extension. +a client can silence this warning by fully-qualifying all protocol types in the extension. As an example, the above conformance can also be written as ```swift -extension Foundation.Date: Swift.Identifiable { +extension Date: Swift.Identifiable { // ... } ```