From 7cb9295af03e58c348ba8f9d16930a65cc3401c8 Mon Sep 17 00:00:00 2001 From: Vincent Fuchs Date: Tue, 21 Feb 2023 17:52:20 +0100 Subject: [PATCH] =?UTF-8?q?fixing=20a=20typo=20:=20'=20vs=20=C2=B4=20value?= =?UTF-8?q?=20now=20shows=20correctly=20in=20the=20generated=20doc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/index.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.asciidoc b/docs/index.asciidoc index 3a1dcef..9f7a987 100644 --- a/docs/index.asciidoc +++ b/docs/index.asciidoc @@ -171,7 +171,7 @@ E:: day of the week (text) E, EE, EEE::: Abbreviated day of the week. Example: `Mon`, `Tue`, `Wed`, `Thu`, `Fri`, `Sat`, `Sun`. Note: The actual language of this will depend on your locale. EEEE::: The full text day of the week. Example: `Monday`, `Tuesday`, ... Note: The actual language of this will depend on your locale. -For non-formatting syntax, you'll need to put single-quote characters around the value. For example, if you were parsing ISO8601 time, "2015-01-01T01:12:23" that little "T" isn't a valid time format, and you want to say "literally, a T", your format would be this: "yyyy-MM-dd'T'HH:mm:ss" +For non-formatting syntax, you'll need to put single-quote characters around the value. For example, if you were parsing ISO8601 time, "2015-01-01T01:12:23" that little "T" isn't a valid time format, and you want to say "literally, a T", your format would be this: "yyyy-MM-dd\'T\'HH:mm:ss" Other less common date units, such as era (G), century \(C), am/pm (a), and # more, can be learned about on the http://www.joda.org/joda-time/key_format.html[joda-time documentation].