@@ -905,14 +905,14 @@ By default, custom classes and structures don't have an implementation of
905905the * equivalence operators* ,
906906known as the * equal to* operator (` == ` ) and * not equal to* operator (` != ` ).
907907You usually implement the ` == ` operator,
908- and use the standard library's default implementation of the ` != ` operator
908+ and use the Swift standard library's default implementation of the ` != ` operator
909909that negates the result of the ` == ` operator.
910910There are two ways to implement the ` == ` operator:
911911You can implement it yourself,
912912or for many types, you can ask Swift to synthesize
913913an implementation for you.
914914In both cases,
915- you add conformance to the standard library's ` Equatable ` protocol.
915+ you add conformance to the Swift standard library's ` Equatable ` protocol.
916916
917917You provide an implementation of the ` == ` operator
918918in the same way as you implement other infix operators:
@@ -1488,7 +1488,7 @@ see <doc:Attributes#resultBuilder>.
14881488 only if there's an implementation of the operator for that type.
14891489 You use ``Self`` to refer to the type that will conform to the protocol,
14901490 just like you do in other protocol requirements.
1491- For example, the standard library defines the ``Equatable`` protocol
1491+ For example, the Swift standard library defines the ``Equatable`` protocol
14921492 which requires the ``==`` operator:
14931493
14941494 .. testcode:: protocolOperator
0 commit comments