From 870e1b11ca5b05ddf7bee67d828f92fc5627dab1 Mon Sep 17 00:00:00 2001 From: Chase Benson Date: Sat, 14 Nov 2015 15:10:33 -0500 Subject: [PATCH] Readme Typo Fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c3dfce1..475008c 100644 --- a/README.md +++ b/README.md @@ -661,7 +661,7 @@ System.out.println(leetTime); // 13:37 ### LocalDate -LocalDate represents a distinct date, e.g. 2014-03-11. It's immutable and works exactly analog to LocalTime. The sample demonstrates how to calculate new dates by adding or substracting days, months or years. Keep in mind that each manipulation returns a new instance. +LocalDate represents a distinct date, e.g. 2014-03-11. It's immutable and works exactly analog to LocalTime. The sample demonstrates how to calculate new dates by adding or subtracting days, months or years. Keep in mind that each manipulation returns a new instance. ```java LocalDate today = LocalDate.now(); -- GitLab