You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
639: Make doc-comments consistently be doc-comments r=curquiza a=CommanderStorm
# Pull Request
## Related issue
no related issue, as just a docs change
## What does this PR do?
- Make doc-comments consistently be doc-comments
- Also fixes a few links which `cargo doc` complained about
## PR checklist
Please check if your PR fulfills the following requirements:
- [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)?
- [x] Have you read the contributing guidelines?
- [x] Have you made sure that the title is accurate and descriptive of the changes?
Thank you so much for contributing to Meilisearch!
Co-authored-by: Frank Elsinga <[email protected]>
Copy file name to clipboardExpand all lines: src/dumps.rs
+1-1
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
//!
7
7
//! - Creating a dump is also referred to as exporting it, whereas launching Meilisearch with a dump is referred to as importing it.
8
8
//!
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.
10
10
//!
11
11
//! - During a dump import, all indexes contained in the indicated `.dump` file are imported along with their associated documents and [settings](crate::settings::Settings).
12
12
//! Any existing [index](crate::indexes::Index) with the same uid as an index in the dump file will be overwritten.
0 commit comments