Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/documents.rs
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ pub struct DocumentsQuery<'a> {
/// Filters to apply.
///
/// Available since v1.2 of Meilisearch
/// Read the [dedicated guide](https://docs.meilisearch.com/reference/features/filtering.html) to learn the syntax.
/// Read the [dedicated guide](https://www.meilisearch.com/docs/learn/fine_tuning_results/filtering#filter-basics) to learn the syntax.
#[serde(skip_serializing_if = "Option::is_none")]
pub filter: Option<&'a str>,
}
Expand Down Expand Up @@ -322,7 +322,7 @@ pub struct DocumentDeletionQuery<'a> {

/// Filters to apply.
///
/// Read the [dedicated guide](https://docs.meilisearch.com/reference/features/filtering.html) to learn the syntax.
/// Read the [dedicated guide](https://www.meilisearch.com/docs/learn/fine_tuning_results/filtering#filter-basics) to learn the syntax.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if this is the correct replacement, cc: @bidoubiwa

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it's the correct one :)

pub filter: Option<&'a str>,
}

Expand Down
22 changes: 11 additions & 11 deletions src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ impl Index {
.await
}

/// Get [typo tolerance](https://docs.meilisearch.com/learn/configuration/typo_tolerance.html#typo-tolerance) of the [Index].
/// Get [typo tolerance](https://www.meilisearch.com/docs/learn/configuration/typo_tolerance#typo-tolerance) of the [Index].
///
/// ```
/// # use meilisearch_sdk::{client::*, indexes::*};
Expand Down Expand Up @@ -1011,7 +1011,7 @@ impl Index {
.await
}

/// Update [displayed attributes](https://www.meilisearch.com/docs/reference/features/settings#displayed-attributes) of the [Index].
/// Update [displayed attributes](https://www.meilisearch.com/docs/reference/api/settings#displayed-attributes) of the [Index].
///
/// # Example
///
Expand Down Expand Up @@ -1091,7 +1091,7 @@ impl Index {
.await
}

/// Update [typo tolerance](https://docs.meilisearch.com/learn/configuration/typo_tolerance.html#typo-tolerance) settings of the [Index].
/// Update [typo tolerance](https://www.meilisearch.com/docs/learn/configuration/typo_tolerance#typo-tolerance) settings of the [Index].
///
/// # Example
///
Expand Down Expand Up @@ -1167,7 +1167,7 @@ impl Index {
.await
}

/// Reset [synonyms](https://www.meilisearch.com/docs/reference/features/synonyms.html) of the [Index].
/// Reset [synonyms](https://www.meilisearch.com/docs/reference/api/settings#synonyms) of the [Index].
///
/// # Example
///
Expand Down Expand Up @@ -1230,7 +1230,7 @@ impl Index {
)
.await
}
/// Reset [stop-words](https://www.meilisearch.com/docs/reference/features/stop_words.html) of the [Index].
/// Reset [stop-words](https://www.meilisearch.com/docs/reference/api/settings#stop-words) of the [Index].
///
/// # Example
///
Expand Down Expand Up @@ -1296,7 +1296,7 @@ impl Index {
.await
}

/// Reset [filterable attributes](https://www.meilisearch.com/docs/reference/features/filtering_and_faceted_search.html) of the [Index].
/// Reset [filterable attributes](https://www.meilisearch.com/docs/reference/api/settings#filterable-attributes) of the [Index].
///
/// # Example
///
Expand Down Expand Up @@ -1328,7 +1328,7 @@ impl Index {
.await
}

/// Reset [sortable attributes](https://www.meilisearch.com/docs/reference/features/sorting.html) of the [Index].
/// Reset [sortable attributes](https://www.meilisearch.com/docs/reference/api/settings#sortable-attributes) of the [Index].
///
/// # Example
///
Expand Down Expand Up @@ -1360,7 +1360,7 @@ impl Index {
.await
}

/// Reset the [distinct attribute](https://www.meilisearch.com/docs/reference/features/settings#distinct-attribute) of the [Index].
/// Reset the [distinct attribute](https://www.meilisearch.com/docs/reference/api/settings#distinct-attribute) of the [Index].
///
/// # Example
///
Expand Down Expand Up @@ -1392,7 +1392,7 @@ impl Index {
.await
}

/// Reset [searchable attributes](https://www.meilisearch.com/docs/reference/features/field_properties.html#searchable-fields) of
/// Reset [searchable attributes](https://www.meilisearch.com/docs/learn/configuration/displayed_searchable_attributes#searchable-fields) of
/// the [Index] (enable all attributes).
///
/// # Example
Expand Down Expand Up @@ -1425,7 +1425,7 @@ impl Index {
.await
}

/// Reset [displayed attributes](https://www.meilisearch.com/docs/reference/features/settings#displayed-attributes) of the [Index] (enable all attributes).
/// Reset [displayed attributes](https://www.meilisearch.com/docs/reference/api/settings#displayed-attributes) of the [Index] (enable all attributes).
///
/// # Example
///
Expand Down Expand Up @@ -1489,7 +1489,7 @@ impl Index {
.await
}

/// Reset [typo tolerance](https://docs.meilisearch.com/learn/configuration/typo_tolerance.html#typo-tolerance) settings of the [Index].
/// Reset [typo tolerance](https://www.meilisearch.com/docs/learn/configuration/typo_tolerance#typo-tolerance) settings of the [Index].
///
/// # Example
///
Expand Down