Skip to content

Commit a7059ba

Browse files
author
Arjun Nayini
committed
[stdlib] Address PR style comments
1 parent 3af43b6 commit a7059ba

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

stdlib/public/core/Tuple.swift.gyb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public func ==(lhs: (), rhs: ()) -> Bool {
3838
/// Returns a Boolean value indicating whether any corresponding components of
3939
/// the two tuples are not equal.
4040
///
41-
/// Two tuples each of arity zero are never unequal
41+
/// All arity zero tuples are equal.
4242
///
4343
/// - Parameters:
4444
/// - lhs: An empty tuple.
@@ -51,7 +51,7 @@ public func !=(lhs: (), rhs: ()) -> Bool {
5151
/// before the second in a lexicographical ordering.
5252
///
5353
/// An arity zero tuple is never strictly before another arity zero tuple in a
54-
/// lexicographical ordering
54+
/// lexicographical ordering.
5555
///
5656
/// - Parameters:
5757
/// - lhs: An empty tuple.
@@ -64,7 +64,7 @@ public func <(lhs: (), rhs: ()) -> Bool {
6464
/// before or the same as the second in a lexicographical ordering.
6565
///
6666
/// 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.
6868
///
6969
/// - Parameters:
7070
/// - lhs: An empty tuple.
@@ -77,7 +77,7 @@ public func <=(lhs: (), rhs: ()) -> Bool {
7777
/// after the second in a lexicographical ordering.
7878
///
7979
/// An arity zero tuple is never strictly after another arity zero tuple in a
80-
/// lexicographical ordering
80+
/// lexicographical ordering.
8181
///
8282
/// - Parameters:
8383
/// - lhs: An empty tuple.
@@ -90,7 +90,7 @@ public func >(lhs: (), rhs: ()) -> Bool {
9090
/// after or the same as the second in a lexicographical ordering.
9191
///
9292
/// 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.
9494
///
9595
/// - Parameters:
9696
/// - lhs: An empty tuple.

0 commit comments

Comments
 (0)