diff --git a/src/Psl/Option/Option.php b/src/Psl/Option/Option.php index 5631ae80..8877c830 100644 --- a/src/Psl/Option/Option.php +++ b/src/Psl/Option/Option.php @@ -311,7 +311,7 @@ public function equals(mixed $other): bool * Combines two `Option` values into a single `Option` containing a tuple of the two inner values. * If either of the `Option`s is `None`, the resulting `Option` will also be `None`. * - * @note: If an element is `None`, the corresponding element in the resulting tuple will be `None`. + * @note: If an element is `None`, both elements in the resulting tuple will be `None`. * * @template Tu *