We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5673e33 commit ab7353bCopy full SHA for ab7353b
src/db.rs
@@ -11,7 +11,7 @@ use tracing::debug;
11
/// this struct is dropped.
12
#[derive(Debug)]
13
pub(crate) struct DbDropGuard {
14
- /// The `Db` instance that will be shut down when this `DbHolder` struct
+ /// The `Db` instance that will be shut down when this `DbDropGuard` struct
15
/// is dropped.
16
db: Db,
17
}
@@ -97,7 +97,7 @@ struct Entry {
97
98
99
impl DbDropGuard {
100
- /// Create a new `DbHolder`, wrapping a `Db` instance. When this is dropped
+ /// Create a new `DbDropGuard`, wrapping a `Db` instance. When this is dropped
101
/// the `Db`'s purge task will be shut down.
102
pub(crate) fn new() -> DbDropGuard {
103
DbDropGuard { db: Db::new() }
0 commit comments