From a4f88bf51c24ace4ba954a844ece723ae14c1f61 Mon Sep 17 00:00:00 2001
From: Baishu Xiao <88483240+xiaobsh@users.noreply.github.com>
Date: Sun, 12 Jul 2026 21:33:20 +0800
Subject: [PATCH] Update sys.html: fix the mistake in sys.html: `y`/`Y`
---
docs/functions/sys.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/functions/sys.html b/docs/functions/sys.html
index d3529f41..7ebac00c 100644
--- a/docs/functions/sys.html
+++ b/docs/functions/sys.html
@@ -70,8 +70,8 @@
sys.datetime (system.datetime)
sys.datetime.milliseconds (sys.datetime.ms) // the milliseconds part of the current time as a three-digit number.
sys.datetime("D") // the full date in a short format (Format: DD/MM/YYYY).
-sys.datetime("Y") // the year part of the current date as a four-digit number.
-sys.datetime("y") // the year part of the current date as a two-digit number.
+sys.datetime("y") // the year part of the current date as a four-digit number.
+sys.datetime("Y") // the year part of the current date as a two-digit number.
sys.datetime("m") // the month part of the current date as a two-digit number.
sys.datetime("d") // the day part of the current date as a two-digit number.
sys.datetime("P") (sys.datetime("p")) // "AM" or "PM" based on the current time.
@@ -163,4 +163,4 @@ sys.is7
Returns whether the Windows version is 7
Syntax
sys.is7
-
\ No newline at end of file
+