From 63d9fd90a848c2b1a2775c2bbbe08f4c22972732 Mon Sep 17 00:00:00 2001 From: cmstar Date: Wed, 20 Apr 2022 18:49:21 +0800 Subject: [PATCH] Update README. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 339638e..9282209 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ fmt.Println(conv.Bool("true")) // -> true fmt.Println(conv.Bool("false")) // -> false // Numbers can be converted time.Time, they're treated as UNIX timestamp. -// NOTE: The location of the time output is **local**. +// For more information, see the example in go-doc. t, err := conv.Time(3600) // An hour later after 1970-01-01T00:00:00Z. // By default time.Time is converted to string with the RFC3339 format. fmt.Println(conv.String(t.UTC())) // -> 1970-01-01T01:00:00Z