We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the .code-samples.meilisearch.yaml file some samples are one-liners and some are split in newlines.
We would like to create consistency between these examples.
Because newline is more easy to read, the idea is to change every one liner in a multiple line command.
For example:
let task: TaskInfo = client.index("jackets").set_distinct_attribute("product_id").await.unwrap();
Becomes
let task: TaskInfo = client .index("jackets") .set_distinct_attribute("product_id") .await .unwrap();
⚠️ DO not work on this before this PR is merged #297
The text was updated successfully, but these errors were encountered:
261fa52
Successfully merging a pull request may close this issue.
In the .code-samples.meilisearch.yaml file some samples are one-liners and some are split in newlines.
We would like to create consistency between these examples.
Because newline is more easy to read, the idea is to change every one liner in a multiple line command.
For example:
Becomes
The text was updated successfully, but these errors were encountered: