Skip to content

Commit bbf458e

Browse files
committed
Populate help strings for systime, systimeint, and uptime DSL functions
1 parent 56ef6d3 commit bbf458e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/pkg/dsl/cst/builtin_function_manager.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,21 +1081,21 @@ strftime_local.`,
10811081
{
10821082
name: "systime",
10831083
class: FUNC_CLASS_TIME,
1084-
help: "help string will go here",
1084+
help: "Returns the system time in floating-point seconds since the epoch.",
10851085
zaryFunc: bifs.BIF_systime,
10861086
},
10871087

10881088
{
10891089
name: "systimeint",
10901090
class: FUNC_CLASS_TIME,
1091-
help: "help string will go here",
1091+
help: "Returns the system time in integer seconds since the epoch.",
10921092
zaryFunc: bifs.BIF_systimeint,
10931093
},
10941094

10951095
{
10961096
name: "uptime",
10971097
class: FUNC_CLASS_TIME,
1098-
help: "help string will go here",
1098+
help: "Returns the time in floating-point seconds since the current Miller program was started.",
10991099
zaryFunc: bifs.BIF_uptime,
11001100
},
11011101

0 commit comments

Comments
 (0)