Skip to content

Commit 6d15ae6

Browse files
authored
Update search.rs
1 parent 6229e75 commit 6d15ae6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/search.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ pub struct SearchQuery<'a> {
237237
pub filter: Option<Filter<'a>>,
238238
/// Facets for which to retrieve the matching count.
239239
///
240-
/// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
240+
/// Can be set to a [wildcard value](enum.Selectors.html#variant.All) that will select all existing attributes.
241241
///
242242
/// **Default: all attributes found in the documents.**
243243
#[serde(skip_serializing_if = "Option::is_none")]
@@ -248,7 +248,7 @@ pub struct SearchQuery<'a> {
248248
pub sort: Option<&'a [&'a str]>,
249249
/// Attributes to display in the returned documents.
250250
///
251-
/// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
251+
/// Can be set to a [wildcard value](enum.Selectors.html#variant.All) that will select all existing attributes.
252252
///
253253
/// **Default: all attributes found in the documents.**
254254
#[serde(skip_serializing_if = "Option::is_none")]
@@ -258,7 +258,7 @@ pub struct SearchQuery<'a> {
258258
///
259259
/// Attributes are composed by the attribute name and an optional `usize` that overwrites the `crop_length` parameter.
260260
///
261-
/// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
261+
/// Can be set to a [wildcard value](enum.Selectors.html#variant.All) that will select all existing attributes.
262262
#[serde(skip_serializing_if = "Option::is_none")]
263263
#[serde(serialize_with = "serialize_attributes_to_crop_with_wildcard")]
264264
pub attributes_to_crop: Option<Selectors<&'a [AttributeToCrop<'a>]>>,
@@ -278,7 +278,7 @@ pub struct SearchQuery<'a> {
278278
pub crop_marker: Option<&'a str>,
279279
/// Attributes whose values will contain **highlighted matching terms**.
280280
///
281-
/// Can be set to a [wildcard value](enum.Selectors#variant.All) that will select all existing attributes.
281+
/// Can be set to a [wildcard value](enum.Selectors.html#variant.All) that will select all existing attributes.
282282
#[serde(skip_serializing_if = "Option::is_none")]
283283
#[serde(serialize_with = "serialize_with_wildcard")]
284284
pub attributes_to_highlight: Option<Selectors<&'a [&'a str]>>,

0 commit comments

Comments
 (0)