Mushfiq Mammadov wrote:1. On page 136, Autoboxing, last paragraph, 1st sentence:
Everything is clear in this explanation but maybe “outputs 1” should be “outputs [1]”.
Correct! The output of that code snippet is
[1].
Mushfiq Mammadov wrote:2. On page 141, in the last example:
Indeed! Semicolon should be added.
Mushfiq Mammadov wrote:3. On page 148, the third example, 1st line:
There is no any typo, everything is ok. But I guess that authors intend to declare variable name as shortDate instead of shortDateTime. Because formatting is regarding only date.
Although nothing wrong with both code snippets, but probably
shortDate is a slightly better variable name.
Mushfiq Mammadov wrote:4. On page 340, mock explanation #4:
“At this point sb contains abbbaa” – abbbaa should be abbaa.
Well spotted!

We have an empty StringBuilder and we append three
a's and insert only two
b's => after the first two method invocations,
sb contains
abbaa (almost a very famous
Swedish pop group 
).
Hope it helps!
Kind regards,
Roel