Open kantuni opened 4 days ago
The string import is unnecessary (in the Defining a Parser section) as Parser.string is used in the rest of the code.
string
Defining a Parser
Parser.string
import Url.Parser as Parser exposing ((</>), Parser, s, string)
should be
import Url.Parser as Parser exposing ((</>), Parser, s)
This import is also present in Listing 8.4.
Listing 8.4
The
string
import is unnecessary (in theDefining a Parser
section) asParser.string
is used in the rest of the code.should be
This import is also present in
Listing 8.4
.