From bb4c55546bd3a0333ba6aaf003eba1e856bf1251 Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Tue, 9 Jun 2026 19:13:42 -0500 Subject: [PATCH] Adjust comment --- rust/src/storage/db/python_db_pool.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/rust/src/storage/db/python_db_pool.rs b/rust/src/storage/db/python_db_pool.rs index 0522e58bc1..0c9059ab3a 100644 --- a/rust/src/storage/db/python_db_pool.rs +++ b/rust/src/storage/db/python_db_pool.rs @@ -13,10 +13,9 @@ * */ -//! We have these three main classes: -//! - Database pool [`PythonDatabasePoolWrapper`] which creates -//! - connections [`LoggingDatabaseConnectionWrapper`] which creates -//! - transactions [`LoggingTransactionWrapper`] +//! We have these main classes: +//! - Database pool [`PythonDatabasePoolWrapper`] which allows you to start a... +//! - transaction [`LoggingTransactionWrapper`] and query the database use pyo3::{intern, prelude::*, types::PyCFunction, types::PyList};