Errata

Programming Elixir 1.6

Errata for Programming Elixir 1.6

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
books online

Chapter 8
Nested Dictionary Structures
DYNAMIC (RUNTIME) NESTED ACCESSORS

​last:​ ​"​​Elwes"​ ​# typo!

that is not a type, it's the correct surname.

Jello  Apr 17, 2020 
books online

18. OTP Supervisors
Supervisors and Workers

the other change that is needed if you don't run "mix new --sup sequence" is the addition of the mod: key in the application function in the mix.exs:

def application do
[
extra_applications: [:logger],
mod: {Sequence.Application, []}
]
end

Jello  Apr 25, 2020 
books online

chapter 19
But Does it Work

mix run results in an error, because the dependency declaration in the mix.exs file is wrong, the name needs to be an atom.

also need to run mix deps.get first

Jello  Apr 26, 2020