From 3ad9d4867e765e2ad14f045de30b21441fde23fc Mon Sep 17 00:00:00 2001 From: Ben Yu Date: Tue, 9 Jan 2024 18:52:44 -0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81f7c7eaf5..551c4bd505 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A small Java 8 utilities library ([javadoc](http://google.github.io/mug/apidocs/ `String user = first('@').toEnd().removeFrom(email);` * [StringFormat](https://github.com/google/mug/wiki/StringFormat-Explained) extracts structured data from string: `new StringFormat("{yyyy}/{mm}/{dd}").parse(dateStr, (yyyy, mm, dd) -> ...)` -* [DateTimeFormats](https://github.com/google/mug/wiki/DateTimeFormats-Explained) creates `DateTimeFormatter` from an example date time string (GoLang style but without magic dates): +* [DateTimeFormats](https://github.com/google/mug/wiki/DateTimeFormats-Explained) creates `DateTimeFormatter` from an example date time string (golang style but without magic dates): ```java DateTimeFormatter formatter = DateTimeFormats.formatOf("Tue, 10 Jan 2023 10:00:00.123 America/Los_Angeles")