From 7c68d0b3465ac2c75cfcb3b712b38c360f244904 Mon Sep 17 00:00:00 2001 From: Bob Makowski Date: Tue, 1 May 2018 13:15:48 -0500 Subject: [PATCH] Issue #60: ch22 : reverse removing 3rd paren. from earlier commit --- ch22.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch22.html b/ch22.html index d2199d5..fb9c664 100644 --- a/ch22.html +++ b/ch22.html @@ -252,7 +252,7 @@

ZonedDateTime class

// Prints 2014-09-19T00:30Z
System.out.println(
    ZonedDateTime.of(2014,9,19,0,30,0,0,ZoneId.of("Z")));
// Prints 2015-08-31T12:39:27.492-04:00[America/Montreal]
System.out.println(
-     ZonedDateTime.now(ZoneId.of("America/Montreal"));

+     ZonedDateTime.now(ZoneId.of("America/Montreal")));

Daylight savings