@@ -38,7 +38,7 @@ public func ==(lhs: (), rhs: ()) -> Bool {
38
38
/// Returns a Boolean value indicating whether any corresponding components of
39
39
/// the two tuples are not equal.
40
40
///
41
- /// Two tuples each of arity zero are never unequal
41
+ /// All arity zero tuples are equal.
42
42
///
43
43
/// - Parameters:
44
44
/// - lhs: An empty tuple.
@@ -51,7 +51,7 @@ public func !=(lhs: (), rhs: ()) -> Bool {
51
51
/// before the second in a lexicographical ordering.
52
52
///
53
53
/// An arity zero tuple is never strictly before another arity zero tuple in a
54
- /// lexicographical ordering
54
+ /// lexicographical ordering.
55
55
///
56
56
/// - Parameters:
57
57
/// - lhs: An empty tuple.
@@ -64,7 +64,7 @@ public func <(lhs: (), rhs: ()) -> Bool {
64
64
/// before or the same as the second in a lexicographical ordering.
65
65
///
66
66
/// An arity zero tuple is always before or the same as another arity zero tuple
67
- /// in a lexicographical ordering
67
+ /// in a lexicographical ordering.
68
68
///
69
69
/// - Parameters:
70
70
/// - lhs: An empty tuple.
@@ -77,7 +77,7 @@ public func <=(lhs: (), rhs: ()) -> Bool {
77
77
/// after the second in a lexicographical ordering.
78
78
///
79
79
/// An arity zero tuple is never strictly after another arity zero tuple in a
80
- /// lexicographical ordering
80
+ /// lexicographical ordering.
81
81
///
82
82
/// - Parameters:
83
83
/// - lhs: An empty tuple.
@@ -90,7 +90,7 @@ public func >(lhs: (), rhs: ()) -> Bool {
90
90
/// after or the same as the second in a lexicographical ordering.
91
91
///
92
92
/// An arity zero tuple is always after or the same as another arity zero tuple
93
- /// in a lexicographical ordering
93
+ /// in a lexicographical ordering.
94
94
///
95
95
/// - Parameters:
96
96
/// - lhs: An empty tuple.
0 commit comments