Skip to content

Commit 4d27c72

Browse files
committed
Fix wording in comments for Product
1 parent 3ffb5b1 commit 4d27c72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Data/Lens/Lens/Product.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import Data.Lens.Iso.Product (_Product)
88
import Data.Lens.Lens (Lens())
99
import Data.Lens.Lens.Tuple as T
1010

11-
-- | Lens for the `left` of a `Product`.
11+
-- | Lens for the first component of a `Product`.
1212
_1 :: forall f g h a. Lens (Product f g a) (Product h g a) (f a) (h a)
1313
_1 = _Product <<< T._1
1414

15-
-- | Lens for the `right` of a `Product`.
15+
-- | Lens for the second component of a `Product`.
1616
_2 :: forall f g h a. Lens (Product f g a) (Product f h a) (g a) (h a)
1717
_2 = _Product <<< T._2

0 commit comments

Comments
 (0)