This is an automated email from the ASF dual-hosted git repository.

mbudiu pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git

commit 36532c7e23dbdc004eaf2975ce5c54ef51f3d282
Author: Mihai Budiu <[email protected]>
AuthorDate: Thu Feb 8 18:30:50 2024 -0800

    Fixes suggested by code review
    
    Signed-off-by: Mihai Budiu <[email protected]>
---
 .../main/java/org/apache/calcite/util/format/FormatElementEnum.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/core/src/main/java/org/apache/calcite/util/format/FormatElementEnum.java 
b/core/src/main/java/org/apache/calcite/util/format/FormatElementEnum.java
index 62e8c793c8..38625d3308 100644
--- a/core/src/main/java/org/apache/calcite/util/format/FormatElementEnum.java
+++ b/core/src/main/java/org/apache/calcite/util/format/FormatElementEnum.java
@@ -81,7 +81,8 @@ public enum FormatElementEnum implements FormatElement {
       sb.append(work.eeeFormat.format(date));
     }
   },
-  E("d", "The day of the month as a decimal number (01-31) left-padded with 
space") {
+  E("d", "The day of the month as a decimal number (1-31); "
+      + "single digits are left-padded with space.") {
     @Override public void format(StringBuilder sb, Date date) {
       final Calendar calendar = Work.get().calendar;
       calendar.setTime(date);

Reply via email to