Skip to content

Commit db4e9ed

Browse files
Fix linking issues identified via cargo doc
1 parent 89b3899 commit db4e9ed

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/documents.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use async_trait::async_trait;
22
use serde::{de::DeserializeOwned, Deserialize, Serialize};
33

4-
/// Derive the [`IndexConfig`](crate::documents::IndexConfig) trait.
4+
/// Derive the [`IndexConfig`] trait.
55
///
66
/// ## Field attribute
77
/// Use the `#[index_config(..)]` field attribute to generate the correct settings

src/dumps.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! - Creating a dump is also referred to as exporting it, whereas launching Meilisearch with a dump is referred to as importing it.
88
//!
9-
//! - During a [dump export](Client::create_dump), all [indexes](crate::indexes::Index) of the current instance are exported—together with their documents and settings—and saved as a single `.dump` file.
9+
//! - During a [dump export](crate::client::Client::create_dump), all [indexes](crate::indexes::Index) of the current instance are exported—together with their documents and settings—and saved as a single `.dump` file.
1010
//!
1111
//! - During a dump import, all indexes contained in the indicated `.dump` file are imported along with their associated documents and [settings](crate::settings::Settings).
1212
//! Any existing [index](crate::indexes::Index) with the same uid as an index in the dump file will be overwritten.

src/lib.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
#![warn(clippy::all)]
231231
#![allow(clippy::needless_doctest_main)]
232232

233-
/// Module containing the [`Client`] struct.
233+
/// Module containing the [`Client`](client::Client) struct.
234234
pub mod client;
235235
/// Module representing the [documents] structures.
236236
pub mod documents;
@@ -242,18 +242,18 @@ pub mod errors;
242242
pub mod features;
243243
/// Module containing the Index struct.
244244
pub mod indexes;
245-
/// Module containing the [`Key`] struct.
245+
/// Module containing the [`Key`](key::Key) struct.
246246
pub mod key;
247247
pub mod request;
248248
/// Module related to search queries and results.
249249
pub mod search;
250-
/// Module containing [`Settings`].
250+
/// Module containing [`Settings`](settings::Settings).
251251
pub mod settings;
252-
/// Module containing the [snapshots] trait.
252+
/// Module containing the [snapshots](snapshots::create_snapshot)-feature.
253253
pub mod snapshots;
254-
/// Module representing the [`TaskInfo`]s.
254+
/// Module representing the [`TaskInfo`](task_info::TaskInfo)s.
255255
pub mod task_info;
256-
/// Module representing the [`Task`]s.
256+
/// Module representing the [`Task`](tasks::Task)s.
257257
pub mod tasks;
258258
/// Module that generates tenant tokens.
259259
#[cfg(not(target_arch = "wasm32"))]

0 commit comments

Comments
 (0)