This commit is contained in:
Boog900 2024-10-26 21:25:38 +01:00
parent d1f3eb40bf
commit d7d7541dae
No known key found for this signature in database
GPG key ID: 42AB1287CB0041C2
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ impl ConfigBuilder {
self self
} }
/// Set a custom database directory (and file) [`Path`]. /// Set a custom database directory (and file) [`PathBuf`].
#[must_use] #[must_use]
pub fn db_directory(mut self, db_directory: PathBuf) -> Self { pub fn db_directory(mut self, db_directory: PathBuf) -> Self {
self.db_directory = Some(db_directory); self.db_directory = Some(db_directory);

View file

@ -104,7 +104,7 @@ impl ConfigBuilder {
self self
} }
/// Set a custom database directory (and file) [`Path`]. /// Set a custom database directory (and file) [`PathBuf`].
#[must_use] #[must_use]
pub fn db_directory(mut self, db_directory: PathBuf) -> Self { pub fn db_directory(mut self, db_directory: PathBuf) -> Self {
self.db_directory = Some(db_directory); self.db_directory = Some(db_directory);