Skip to content

Commit 37e7a9d

Browse files
authored
Fixed typos in connection
1 parent a2e9dd4 commit 37e7a9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libsql/src/connection.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ impl Connection {
137137
///
138138
/// # Return
139139
///
140-
/// This returns a `BatchRows` currently only the `remote` and `local` connection supports this feature and
140+
/// This returns a `BatchRows` currently only the `remote` and `local` connection supports this feature and
141141
/// all other connection types will return an empty set always.
142142
pub async fn execute_batch(&self, sql: &str) -> Result<BatchRows> {
143143
tracing::trace!("executing batch `{}`", sql);
@@ -206,7 +206,7 @@ impl Connection {
206206
self.conn.busy_timeout(timeout)
207207
}
208208

209-
/// Check weather libsql is in `autocommit` or not.
209+
/// Check whether libsql is in `autocommit` or not.
210210
pub fn is_autocommit(&self) -> bool {
211211
self.conn.is_autocommit()
212212
}

0 commit comments

Comments
 (0)