From 26acf1b8f3ea17b1243d60dc0b02486578d0ba1b Mon Sep 17 00:00:00 2001 From: Alex Kesling Date: Tue, 10 Sep 2024 16:22:38 -0400 Subject: [PATCH] Improve phrasing / readability of crate docs opening paragraph --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 26b38bd..61f3a8b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,9 +1,9 @@ //! # pgwire //! -//! pgwire is library that implements postgresql wire protocol and allows to -//! write postgresql protocol compatible servers and clients. Of course in most -//! cases you don't need a custom client, `postgres-rust` will be work for -//! postgresql comptiable servers. So at the moment, this library focus on +//! `pgwire` provides the PostgreSQL wire protocol as a library for +//! implementing PostgreSQL-compatible servers and clients. +//! [`rust-postgres`](https://crates.io/crates/postgres) will be sufficient +//! for most Postgres client use-cases, so this library focuses on //! server development. //! //! ## About Postgres Wire Protocol