aboutsummaryrefslogtreecommitdiff
path: root/src/db
diff options
context:
space:
mode:
authorStefan Majer <stefan.majer@f-i-ts.de>2025-01-16 13:22:00 +0100
committerStefan Majer <stefan.majer@f-i-ts.de>2025-01-16 13:22:00 +0100
commit2eb9fcae20cb7e41b1197f4565db492a97f95736 (patch)
treebe9b2912ae92b07ef5e7905372b1bc2a542234c6 /src/db
parent255b01b626096ef98cf24c9552b39c0372fb4eb3 (diff)
downloadgarage-2eb9fcae20cb7e41b1197f4565db492a97f95736.tar.gz
garage-2eb9fcae20cb7e41b1197f4565db492a97f95736.zip
Fix all typos
Diffstat (limited to 'src/db')
-rw-r--r--src/db/lib.rs2
-rw-r--r--src/db/lmdb_adapter.rs2
-rw-r--r--src/db/sqlite_adapter.rs4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/db/lib.rs b/src/db/lib.rs
index 3485745a..c55c8643 100644
--- a/src/db/lib.rs
+++ b/src/db/lib.rs
@@ -122,7 +122,7 @@ impl Db {
_ => unreachable!(),
},
Err(TxError::Db(e2)) => match ret {
- // Ok was stored -> the error occured when finalizing
+ // Ok was stored -> the error occurred when finalizing
// transaction
Ok(_) => Err(TxError::Db(e2)),
// An error was already stored: that's the one we want to
diff --git a/src/db/lmdb_adapter.rs b/src/db/lmdb_adapter.rs
index de4c3910..40f1c867 100644
--- a/src/db/lmdb_adapter.rs
+++ b/src/db/lmdb_adapter.rs
@@ -233,7 +233,7 @@ impl<'a> LmdbTx<'a> {
fn get_tree(&self, i: usize) -> TxOpResult<&Database> {
self.trees.get(i).ok_or_else(|| {
TxOpError(Error(
- "invalid tree id (it might have been openned after the transaction started)".into(),
+ "invalid tree id (it might have been opened after the transaction started)".into(),
))
})
}
diff --git a/src/db/sqlite_adapter.rs b/src/db/sqlite_adapter.rs
index 9c9a668d..f3aa35d1 100644
--- a/src/db/sqlite_adapter.rs
+++ b/src/db/sqlite_adapter.rs
@@ -142,7 +142,7 @@ impl IDb for SqliteDb {
fn snapshot(&self, to: &PathBuf) -> Result<()> {
fn progress(p: rusqlite::backup::Progress) {
let percent = (p.pagecount - p.remaining) * 100 / p.pagecount;
- info!("Sqlite snapshot progres: {}%", percent);
+ info!("Sqlite snapshot progress: {}%", percent);
}
self.db
.get()?
@@ -304,7 +304,7 @@ impl<'a> SqliteTx<'a> {
fn get_tree(&self, i: usize) -> TxOpResult<&'_ str> {
self.trees.get(i).map(Arc::as_ref).ok_or_else(|| {
TxOpError(Error(
- "invalid tree id (it might have been openned after the transaction started)".into(),
+ "invalid tree id (it might have been opened after the transaction started)".into(),
))
})
}