From bc9102c82e32606328478b6757b199d322aed46b Mon Sep 17 00:00:00 2001 From: Allan Zhang Date: Wed, 14 Aug 2024 21:24:58 -0400 Subject: [PATCH] Remove `Zoned` from docs The implementation was previously removed as per jiff author comment. --- postgres-types/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/postgres-types/src/lib.rs b/postgres-types/src/lib.rs index 7d6d976c6..6ad2eff50 100644 --- a/postgres-types/src/lib.rs +++ b/postgres-types/src/lib.rs @@ -493,11 +493,10 @@ impl WrongType { /// | `time::OffsetDateTime` | TIMESTAMP WITH TIME ZONE | /// | `time::Date` | DATE | /// | `time::Time` | TIME | -/// | `jiff::civil::DateTime` | TIMESTAMP | -/// | `jiff::Timestamp` | TIMESTAMP WITH TIME ZONE | -/// | `jiff::Zoned` | TIMESTAMP WITH TIME ZONE | /// | `jiff::civil::Date` | DATE | +/// | `jiff::civil::DateTime` | TIMESTAMP | /// | `jiff::civil::Time` | TIME | +/// | `jiff::Timestamp` | TIMESTAMP WITH TIME ZONE | /// | `eui48::MacAddress` | MACADDR | /// | `geo_types::Point` | POINT | /// | `geo_types::Rect` | BOX |