From 805a7da049aaf70604afcf9af5b32b70351d67b4 Mon Sep 17 00:00:00 2001 From: Echo-Head-Wall <101990236+Echo-Head-Wall@users.noreply.github.com> Date: Thu, 12 Sep 2024 11:05:54 +0000 Subject: [PATCH] Fixed comment/doc title how to create the sync pool was labeled as async when it should be labeled as sync --- src/pool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pool.rs b/src/pool.rs index d33fafb..548231c 100644 --- a/src/pool.rs +++ b/src/pool.rs @@ -30,7 +30,7 @@ //! let mut db = pool.get().await.unwrap(); //! } //! ``` -//! ### Creating a async pool +//! ### Creating a sync pool //! ```no_run //! use skytable::{pool, Config}; //!