From 4cdb3f48ea1152104d6dba4573b2c2cde0897ac5 Mon Sep 17 00:00:00 2001 From: Rakshith Ravi Date: Tue, 23 Aug 2022 13:11:46 +0530 Subject: [PATCH] Ran fmt --- sqlx-core/src/postgres/types/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlx-core/src/postgres/types/mod.rs b/sqlx-core/src/postgres/types/mod.rs index 27c2e18650..ef6e960f57 100644 --- a/sqlx-core/src/postgres/types/mod.rs +++ b/sqlx-core/src/postgres/types/mod.rs @@ -74,8 +74,8 @@ //! | `ipnetwork::IpNetwork` | INET, CIDR | //! | `std::net::IpAddr` | INET, CIDR | //! -//! Note that because `IpAddr` does not support network prefixes, it is an error to attempt to decode -//! an `IpAddr` from a `INET` or `CIDR` value with a network prefix smaller than the address' full width: +//! Note that because `IpAddr` does not support network prefixes, it is an error to attempt to decode +//! an `IpAddr` from a `INET` or `CIDR` value with a network prefix smaller than the address' full width: //! `/32` for IPv4 addresses and `/128` for IPv6 addresses. //! //! `IpNetwork` does not have this limitation.