Skip to content

Commit af55f36

Browse files
meili-bors[bot]meili-botbrunoocasalibidoubiwa
authored
Merge #484
484: Fix documentation links redirection over the entire repository r=bidoubiwa a=meili-bot _This PR is auto-generated._ Fix documentation links redirection over the entire repository Related to: meilisearch/integration-guides#257 Co-authored-by: meili-bot <[email protected]> Co-authored-by: Bruno Casali <[email protected]> Co-authored-by: cvermand <[email protected]>
2 parents e81b006 + 3f1e71b commit af55f36

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/documents.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ pub struct DocumentsQuery<'a> {
184184
/// Filters to apply.
185185
///
186186
/// Available since v1.2 of Meilisearch
187-
/// Read the [dedicated guide](https://docs.meilisearch.com/reference/features/filtering.html) to learn the syntax.
187+
/// Read the [dedicated guide](https://www.meilisearch.com/docs/learn/fine_tuning_results/filtering#filter-basics) to learn the syntax.
188188
#[serde(skip_serializing_if = "Option::is_none")]
189189
pub filter: Option<&'a str>,
190190
}
@@ -316,7 +316,7 @@ pub struct DocumentDeletionQuery<'a> {
316316

317317
/// Filters to apply.
318318
///
319-
/// Read the [dedicated guide](https://docs.meilisearch.com/reference/features/filtering.html) to learn the syntax.
319+
/// Read the [dedicated guide](https://www.meilisearch.com/docs/learn/fine_tuning_results/filtering#filter-basics) to learn the syntax.
320320
pub filter: Option<&'a str>,
321321
}
322322

src/settings.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ impl Index {
604604
.await
605605
}
606606

607-
/// Get [typo tolerance](https://docs.meilisearch.com/learn/configuration/typo_tolerance.html#typo-tolerance) of the [Index].
607+
/// Get [typo tolerance](https://www.meilisearch.com/docs/learn/configuration/typo_tolerance#typo-tolerance) of the [Index].
608608
///
609609
/// ```
610610
/// # use meilisearch_sdk::{client::*, indexes::*};
@@ -1009,7 +1009,7 @@ impl Index {
10091009
.await
10101010
}
10111011

1012-
/// Update [displayed attributes](https://www.meilisearch.com/docs/reference/features/settings#displayed-attributes) of the [Index].
1012+
/// Update [displayed attributes](https://www.meilisearch.com/docs/reference/api/settings#displayed-attributes) of the [Index].
10131013
///
10141014
/// # Example
10151015
///
@@ -1089,7 +1089,7 @@ impl Index {
10891089
.await
10901090
}
10911091

1092-
/// Update [typo tolerance](https://docs.meilisearch.com/learn/configuration/typo_tolerance.html#typo-tolerance) settings of the [Index].
1092+
/// Update [typo tolerance](https://www.meilisearch.com/docs/learn/configuration/typo_tolerance#typo-tolerance) settings of the [Index].
10931093
///
10941094
/// # Example
10951095
///
@@ -1165,7 +1165,7 @@ impl Index {
11651165
.await
11661166
}
11671167

1168-
/// Reset [synonyms](https://www.meilisearch.com/docs/reference/features/synonyms.html) of the [Index].
1168+
/// Reset [synonyms](https://www.meilisearch.com/docs/reference/api/settings#synonyms) of the [Index].
11691169
///
11701170
/// # Example
11711171
///
@@ -1228,7 +1228,7 @@ impl Index {
12281228
)
12291229
.await
12301230
}
1231-
/// Reset [stop-words](https://www.meilisearch.com/docs/reference/features/stop_words.html) of the [Index].
1231+
/// Reset [stop-words](https://www.meilisearch.com/docs/reference/api/settings#stop-words) of the [Index].
12321232
///
12331233
/// # Example
12341234
///
@@ -1294,7 +1294,7 @@ impl Index {
12941294
.await
12951295
}
12961296

1297-
/// Reset [filterable attributes](https://www.meilisearch.com/docs/reference/features/filtering_and_faceted_search.html) of the [Index].
1297+
/// Reset [filterable attributes](https://www.meilisearch.com/docs/reference/api/settings#filterable-attributes) of the [Index].
12981298
///
12991299
/// # Example
13001300
///
@@ -1326,7 +1326,7 @@ impl Index {
13261326
.await
13271327
}
13281328

1329-
/// Reset [sortable attributes](https://www.meilisearch.com/docs/reference/features/sorting.html) of the [Index].
1329+
/// Reset [sortable attributes](https://www.meilisearch.com/docs/reference/api/settings#sortable-attributes) of the [Index].
13301330
///
13311331
/// # Example
13321332
///
@@ -1358,7 +1358,7 @@ impl Index {
13581358
.await
13591359
}
13601360

1361-
/// Reset the [distinct attribute](https://www.meilisearch.com/docs/reference/features/settings#distinct-attribute) of the [Index].
1361+
/// Reset the [distinct attribute](https://www.meilisearch.com/docs/reference/api/settings#distinct-attribute) of the [Index].
13621362
///
13631363
/// # Example
13641364
///
@@ -1390,7 +1390,7 @@ impl Index {
13901390
.await
13911391
}
13921392

1393-
/// Reset [searchable attributes](https://www.meilisearch.com/docs/reference/features/field_properties.html#searchable-fields) of
1393+
/// Reset [searchable attributes](https://www.meilisearch.com/docs/learn/configuration/displayed_searchable_attributes#searchable-fields) of
13941394
/// the [Index] (enable all attributes).
13951395
///
13961396
/// # Example
@@ -1423,7 +1423,7 @@ impl Index {
14231423
.await
14241424
}
14251425

1426-
/// Reset [displayed attributes](https://www.meilisearch.com/docs/reference/features/settings#displayed-attributes) of the [Index] (enable all attributes).
1426+
/// Reset [displayed attributes](https://www.meilisearch.com/docs/reference/api/settings#displayed-attributes) of the [Index] (enable all attributes).
14271427
///
14281428
/// # Example
14291429
///
@@ -1487,7 +1487,7 @@ impl Index {
14871487
.await
14881488
}
14891489

1490-
/// Reset [typo tolerance](https://docs.meilisearch.com/learn/configuration/typo_tolerance.html#typo-tolerance) settings of the [Index].
1490+
/// Reset [typo tolerance](https://www.meilisearch.com/docs/learn/configuration/typo_tolerance#typo-tolerance) settings of the [Index].
14911491
///
14921492
/// # Example
14931493
///

0 commit comments

Comments
 (0)