Skip to content

Commit

Permalink
Correct method documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ladvoc committed Sep 14, 2024
1 parent 5af52d6 commit 102eed0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ extension BijectiveDictionary {
/// You use this initializer to create a dictionary when you have a sequence
/// of left-right tuples with unique values on each side. Passing a sequence with duplicate
/// values on either side to this initializer results in a runtime error. If your sequence might have duplicate
/// keys, use the `BijectiveDictionary(_:uniquingKeysWith:)` initializer instead.
/// left or right values, use the `BijectiveDictionary(_:uniquingWith:)` initializer instead.
///
/// - Precondition: The sequence must not have duplicate left or right values.
@inlinable public init<S>(uniqueLeftRightPairs pairs: S) where S: Sequence, S.Element == (Left, Right) {
Expand Down

0 comments on commit 102eed0

Please sign in to comment.