Effective Haskell Chapter 9 - Mapping Functors

In the Mapping Functors Section of Chapter 9 (approx p. 396 in ePub), the examples:

--- Replicate each element of the list and map the successor function to it
--- the show the list
show . (succ <$>) . replicate 3 <$> [1,2,3]

--- Replicate each element of the list and map a function that shows the the successor to it
(show . succ <$>) . replicate 3 <$> [1,2,3]
[["2","2","2"],["3","3","3"],["4","4","4"]]

The first example is missing the ghci output and has “the show the list” instead of “then show the list” in the comment.

The comment for the second example repeats “the”