From ec44665b696908e080a611f1e96e09c952f6320f Mon Sep 17 00:00:00 2001 From: byteink Date: Thu, 30 Mar 2023 14:59:38 +0800 Subject: [PATCH] Fix documentation of string_to_timestamp_nanos --- arrow-cast/src/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arrow-cast/src/parse.rs b/arrow-cast/src/parse.rs index 45a255626f6b..e2c7f9bcc2ca 100644 --- a/arrow-cast/src/parse.rs +++ b/arrow-cast/src/parse.rs @@ -265,7 +265,7 @@ pub fn string_to_datetime( /// relative to UTC, see [`string_to_datetime`] for alternative semantics /// /// For example, both `1997-01-31 09:26:56.123Z`, `1997-01-31T09:26:56.123`, -/// and `1997-01-31T14:26:56.123-05:00` will be parsed as the same value +/// and `1997-01-31T14:26:56.123+05:00` will be parsed as the same value /// #[inline] pub fn string_to_timestamp_nanos(s: &str) -> Result {