Skip to content

Commit ab7353b

Browse files
authored
Update db.rs (#143)
Small typos resulting from renaming Db guard struct without changing the doc comments.
1 parent 5673e33 commit ab7353b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/db.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use tracing::debug;
1111
/// this struct is dropped.
1212
#[derive(Debug)]
1313
pub(crate) struct DbDropGuard {
14-
/// The `Db` instance that will be shut down when this `DbHolder` struct
14+
/// The `Db` instance that will be shut down when this `DbDropGuard` struct
1515
/// is dropped.
1616
db: Db,
1717
}
@@ -97,7 +97,7 @@ struct Entry {
9797
}
9898

9999
impl DbDropGuard {
100-
/// Create a new `DbHolder`, wrapping a `Db` instance. When this is dropped
100+
/// Create a new `DbDropGuard`, wrapping a `Db` instance. When this is dropped
101101
/// the `Db`'s purge task will be shut down.
102102
pub(crate) fn new() -> DbDropGuard {
103103
DbDropGuard { db: Db::new() }

0 commit comments

Comments
 (0)