diff --git a/src/database/json/mod.rs b/src/database/json/mod.rs index 5caeefa..0398292 100644 --- a/src/database/json/mod.rs +++ b/src/database/json/mod.rs @@ -32,7 +32,8 @@ pub struct JsonDatabase { } impl JsonDatabase { - /// Create a new JSON database with the provided backend, e.g. [`JsonDatabaseFileBackend`]. + /// Create a new JSON database with the provided backend, e.g. + /// [`backend::JsonDatabaseFileBackend`]. pub fn new(backend: JDB) -> Self { JsonDatabase { backend } } diff --git a/src/library/beets/mod.rs b/src/library/beets/mod.rs index 7ce5214..d066ea0 100644 --- a/src/library/beets/mod.rs +++ b/src/library/beets/mod.rs @@ -94,7 +94,8 @@ trait LibraryPrivate { } impl BeetsLibrary { - /// Create a new beets library with the provided executor, e.g. [`BeetsLibraryProcessExecutor`]. + /// Create a new beets library with the provided executor, e.g. + /// [`executor::BeetsLibraryProcessExecutor`]. pub fn new(executor: BLE) -> Self { BeetsLibrary { executor } }