I looked through chapter 7 for things related to the `times` module (I think 
it's the only chapter that uses it):

p191, p213: `TimeInfo` => `DateTime`

p191: Defines a floating-point time field in the Message type. => Defines a 
time field in the Message type. (`Time` isn't floating point)

p196: `$message.time.toSeconds().int` => `$message.time.toUnix()` (Description 
of that code should also change accordingly)

p197: `fromSeconds(row[1].parseInt)``=> ``fromUnix(row[1].parseBiggestInt)` 
(Description of that code should also change accordingly)

p205: `message.time.getGMTime()` => `message.time.utc()`

p212: `getTime().getGMTime() + 2.hours` => `getTime().utc + 2.hours`

Reply via email to