From 1388fc8acc07b41ab38f4dc096f03ba9c7b851f8 Mon Sep 17 00:00:00 2001 From: Joel Koen Date: Fri, 7 Jun 2024 18:51:52 +1000 Subject: [PATCH] docs(sqlite): fix typo - unixtime() -> unixepoch() (#3271) --- sqlx-sqlite/src/types/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-sqlite/src/types/mod.rs b/sqlx-sqlite/src/types/mod.rs index 85275273..e0604cd6 100644 --- a/sqlx-sqlite/src/types/mod.rs +++ b/sqlx-sqlite/src/types/mod.rs @@ -60,7 +60,7 @@ //! A number of possible formats are tried; see `sqlx-sqlite/src/types/chrono.rs` for the current //! set of formats. //! * If `INTEGER`, it is expected to be the number of seconds since January 1, 1970 00:00 UTC, -//! as if returned from the `unixtime()` function (without the `subsec` modifier). +//! as if returned from the `unixepoch()` function (without the `subsec` modifier). //! * If `REAL`, it is expected to be the (possibly fractional) number of days since the Julian epoch, //! November 24, 4714 BCE 12:00 UTC, as if returned from the `julianday()` function. //!