From 37b10e6e906da3aadc73223ded9e5f5f33612b18 Mon Sep 17 00:00:00 2001 From: Leo Gall Date: Fri, 3 Feb 2023 11:52:07 +0100 Subject: [PATCH] Fix docu of Modelica.Utilities.System.getTime() In the example for return values, day was missing. --- Modelica/Utilities/System.mo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modelica/Utilities/System.mo b/Modelica/Utilities/System.mo index 6bbd436afb..91a02c5a50 100644 --- a/Modelica/Utilities/System.mo +++ b/Modelica/Utilities/System.mo @@ -102,7 +102,7 @@ All returned values are of type Integer and have the following meaning:

Example

-(ms, sec, min, hour, mon, year) = getTime()   // = (281, 30, 13, 10, 15, 2, 2015)
+(ms, sec, min, hour, day, mon, year) = getTime()   // = (281, 30, 13, 10, 15, 2, 2015)
                                               // Feb. 15, 2015 at 10:13 after 30.281 s
 

Note