Skip to content

Commit

Permalink
Update doc comments on fast fields
Browse files Browse the repository at this point in the history
`fast` fields are now booleans instead of strings. Update the rust
doc comments to reflect this.
  • Loading branch information
GodTamIt committed Dec 30, 2023
1 parent 3219743 commit adfc9bb
Showing 1 changed file with 7 additions and 7 deletions.
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

0 comments on commit adfc9bb

Please sign in to comment.