Skip to content
New issue

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

Update doc comments on fast fields #181

Merged
merged 1 commit into from
Dec 30, 2023
Merged
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
14 changes: 7 additions & 7 deletions src/schemabuilder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ impl SchemaBuilder {
/// content of the field can be later restored from a Searcher.
/// Defaults to False.
/// indexed (bool, optional): If true sets the field to be indexed.
/// fast (str, optional): Set the numeric options as a fast field. A
/// fast (bool, optional): Set the numeric options as a fast field. A
/// fast field is a column-oriented fashion storage for tantivy.
/// It is designed for the fast random access of some document
/// fields given a document id.
Expand Down Expand Up @@ -152,7 +152,7 @@ impl SchemaBuilder {
/// content of the field can be later restored from a Searcher.
/// Defaults to False.
/// indexed (bool, optional): If true sets the field to be indexed.
/// fast (str, optional): Set the numeric options as a fast field. A
/// fast (bool, optional): Set the numeric options as a fast field. A
/// fast field is a column-oriented fashion storage for tantivy.
/// It is designed for the fast random access of some document
/// fields given a document id.
Expand Down Expand Up @@ -189,7 +189,7 @@ impl SchemaBuilder {
/// content of the field can be later restored from a Searcher.
/// Defaults to False.
/// indexed (bool, optional): If true sets the field to be indexed.
/// fast (str, optional): Set the numeric options as a fast field. A
/// fast (bool, optional): Set the numeric options as a fast field. A
/// fast field is a column-oriented fashion storage for tantivy.
/// It is designed for the fast random access of some document
/// fields given a document id.
Expand Down Expand Up @@ -226,7 +226,7 @@ impl SchemaBuilder {
/// content of the field can be later restored from a Searcher.
/// Defaults to False.
/// indexed (bool, optional): If true sets the field to be indexed.
/// fast (str, optional): Set the numeric options as a fast field. A
/// fast (bool, optional): Set the numeric options as a fast field. A
/// fast field is a column-oriented fashion storage for tantivy.
/// It is designed for the fast random access of some document
/// fields given a document id.
Expand Down Expand Up @@ -263,7 +263,7 @@ impl SchemaBuilder {
/// content of the field can be later restored from a Searcher.
/// Defaults to False.
/// indexed (bool, optional): If true sets the field to be indexed.
/// fast (str, optional): Set the date options as a fast field. A fast
/// fast (bool, optional): Set the date options as a fast field. A fast
/// field is a column-oriented fashion storage for tantivy. It is
/// designed for the fast random access of some document fields
/// given a document id.
Expand Down Expand Up @@ -386,7 +386,7 @@ impl SchemaBuilder {
/// content of the field can be later restored from a Searcher.
/// Defaults to False.
/// indexed (bool, optional): If true sets the field to be indexed.
/// fast (str, optional): Set the bytes options as a fast field. A fast
/// fast (bool, optional): Set the bytes options as a fast field. A fast
/// field is a column-oriented fashion storage for tantivy. It is
/// designed for the fast random access of some document fields
/// given a document id.
Expand Down Expand Up @@ -433,7 +433,7 @@ impl SchemaBuilder {
/// content of the field can be later restored from a Searcher.
/// Defaults to False.
/// indexed (bool, optional): If true sets the field to be indexed.
/// fast (str, optional): Set the IP address options as a fast field. A
/// fast (bool, optional): Set the IP address options as a fast field. A
/// fast field is a column-oriented fashion storage for tantivy. It
/// is designed for the fast random access of some document fields
/// given a document id.
Expand Down
Loading