From fa69b75a052ff7c849b972832be6e71a29a419f6 Mon Sep 17 00:00:00 2001 From: Morten Haraldsen Date: Mon, 22 Jan 2024 13:20:37 +0100 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f5a1409..f5ab806 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,9 @@ class Test { } ``` #### Parsing leniently to a timestamp -In some real world scenarios, the need to parse a best-effort timestamp is needed. To ease this, we can use `ITU.parseLenient()` with `DateTime.toInstant()` like this: +In some real world scenarios, it is useful to parse a best-effort timestamp. To ease usage, converting a raw `com.ethlo.time.DateTime` instance into `java.time.Instant` was added in 1.7.7. + +We can use `ITU.parseLenient()` with `DateTime.toInstant()` like this: ```java import com.ethlo.time.ITU;