Skip to content

Commit eaff73b

Browse files
committed
[stdlib] Fix func signature spacing
- standardizes spacing of an operator(==) func signature in Equatable.swift
1 parent 198b974 commit eaff73b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/Equatable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ extension Equatable {
217217
/// }
218218
/// }
219219
///
220-
/// func ==(lhs: IntegerRef, rhs: IntegerRef) -> Bool {
220+
/// func == (lhs: IntegerRef, rhs: IntegerRef) -> Bool {
221221
/// return lhs.value == rhs.value
222222
/// }
223223
///

0 commit comments

Comments
 (0)