diff --git a/test/SymbolGraph/Relationships/DefaultImplementationOf/Indirect.swift b/test/SymbolGraph/Relationships/DefaultImplementationOf/Indirect.swift index ba0c118192841..193dece347078 100644 --- a/test/SymbolGraph/Relationships/DefaultImplementationOf/Indirect.swift +++ b/test/SymbolGraph/Relationships/DefaultImplementationOf/Indirect.swift @@ -15,5 +15,5 @@ extension Q { // CHECK-DAG: "kind": "defaultImplementationOf",{{[[:space:]]*}}"source": "s:8Indirect1QPAAE3fooyyF",{{[[:space:]]*}}"target": "s:8Indirect1PP3fooyyF" -// Since foo is a default implementation of a requirment, we don't consider this to be a "member" +// Since foo is a default implementation of a requirement, we don't consider this to be a "member" // CHECK-NOT: memberOf diff --git a/test/SymbolGraph/Symbols/SkipsSPI.swift b/test/SymbolGraph/Symbols/SkipsSPI.swift index 716c2733e3561..e991e993d2e4a 100644 --- a/test/SymbolGraph/Symbols/SkipsSPI.swift +++ b/test/SymbolGraph/Symbols/SkipsSPI.swift @@ -29,11 +29,11 @@ public class ClassShouldntAppear {} // This struct should appear public struct StructShouldAppear { - // This shouldn't appear beacause it is @_spi(OtherModule), despite `StructShouldAppear`. + // This shouldn't appear because it is @_spi(OtherModule), despite `StructShouldAppear`. @_spi(OtherModule) public func functionShouldntAppear() {} - // This shouldn't appear beacause it is @_spi(OtherModule), despite `StructShouldAppear`. + // This shouldn't appear because it is @_spi(OtherModule), despite `StructShouldAppear`. @_spi(OtherModule) public struct InnerStructShouldntAppear {} }