From 0d8529b06ae948d9d08f7629724fc378d917bdd1 Mon Sep 17 00:00:00 2001 From: Pablo Largo Mohedano Date: Sun, 17 Dec 2023 19:04:38 +0100 Subject: [PATCH] Removed wrong and redundant phpdoc --- src/Psl/Option/Option.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Psl/Option/Option.php b/src/Psl/Option/Option.php index 8877c830..b18bf915 100644 --- a/src/Psl/Option/Option.php +++ b/src/Psl/Option/Option.php @@ -311,8 +311,6 @@ 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`, both elements in the resulting tuple will be `None`. - * * @template Tu * * @param Option $other The other `Option` to zip with.