Genetic Algorithms in Elixir: Possible typo in fitness_function code (page 90)

@seanmor5

Should the following line of code in fitness_function:

|> Kernel.-(Enum.at(chromosome.genes), j)

be:

|> Kernel.-(Enum.at(chromosome.genes, j)) ?