Skip to content

Commit f850fca

Browse files
wrong function name and small formatting issue
1 parent 09f168a commit f850fca

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

modules/ROOT/pages/functions/index.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -652,12 +652,12 @@ Values of the xref::values-and-types/temporal.adoc[temporal types] -- `DATE`, `Z
652652
| `datetime(input = DEFAULT_TEMPORAL_ARGUMENT :: ANY) :: ZONED DATETIME`
653653
| Creates a `ZONED DATETIME` instant.
654654

655-
1.1+| xref::functions/temporal/index.adoc#functions-datetime-timestamp[`datetime.fromepoch()`]
656-
| `datetime.fromepoch(seconds :: INTEGER \| FLOAT, nanoseconds :: INTEGER \| FLOAT) :: ZONED DATETIME`
655+
1.1+| xref::functions/temporal/index.adoc#functions-datetime-timestamp[`datetime.fromEpoch()`]
656+
| `datetime.fromEpoch(seconds :: INTEGER \| FLOAT, nanoseconds :: INTEGER \| FLOAT) :: ZONED DATETIME`
657657
| Creates a `ZONED DATETIME` given the seconds and nanoseconds since the start of the epoch.
658658

659-
1.1+| xref::functions/temporal/index.adoc#functions-datetime-timestamp[`datetime.fromepochmillis()`]
660-
| `datetime.fromepochmillis(milliseconds :: INTEGER \| FLOAT) :: ZONED DATETIME`
659+
1.1+| xref::functions/temporal/index.adoc#functions-datetime-timestamp[`datetime.fromEpochMillis()`]
660+
| `datetime.fromEpochMillis(milliseconds :: INTEGER \| FLOAT) :: ZONED DATETIME`
661661
| Creates a `ZONED DATETIME` given the milliseconds since the start of the epoch.
662662

663663
1.1+| xref::functions/temporal/index.adoc#functions-datetime-realtime[`datetime.realtime()`]

modules/ROOT/pages/functions/scalar.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ RETURN startNode(r)
860860
|===
861861

862862
[NOTE]
863-
xref:functions/temporal/index.adoc#functions-datetime-fromepochmillis[`datetime.epochMillis()`] is a functional equivalent to `timestamp()`.
863+
xref:functions/temporal/index.adoc#functions-datetime-fromepochmillis[`datetime.fromEpochMillis()`] is a functional equivalent to `timestamp()`.
864864

865865
.Considerations
866866
|===

modules/ROOT/pages/functions/temporal/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1318,7 +1318,7 @@ RETURN datetime({epochMillis: 424797300000}) AS theDate
13181318

13191319
.Details
13201320
|===
1321-
| *Syntax* 3+| `datetime.fromepoch(seconds, nanoseconds)`
1321+
| *Syntax* 3+| `datetime.fromEpoch(seconds, nanoseconds)`
13221322
| *Description* 3+| Creates a `ZONED DATETIME` given the seconds and nanoseconds since the start of the epoch.
13231323
.3+| *Arguments* | *Name* | *Type* | *Description*
13241324
| `seconds` | `INTEGER \| FLOAT` | The number of seconds from the UNIX epoch in the UTC timezone.
@@ -1354,7 +1354,7 @@ RETURN dateTimeFromEpoch
13541354

13551355
.Details
13561356
|===
1357-
| *Syntax* 3+| `datetime.fromepochmillis(milliseconds)`
1357+
| *Syntax* 3+| `datetime.fromEpochMillis(milliseconds)`
13581358
| *Description* 3+| Creates a `ZONED DATETIME` given the milliseconds since the start of the epoch.
13591359
.2+| *Arguments* | *Name* | *Type* | *Description*
13601360
| `milliseconds` | `INTEGER \| FLOAT` | The number of milliseconds from the UNIX epoch in the UTC timezone.

0 commit comments

Comments
 (0)