Skip to content

[DOCS] Fix several Asciidoctor double arrow replacements #52827

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

Merged
merged 1 commit into from
Mar 4, 2020
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ value of the variable/field and can result in data loss.
|Remainder|%=
|Addition|+=
|Subtraction|-=
|Left Shift|<<=
|Left Shift|+++<<=+++
|Right Shift|>>=
|Unsigned Right Shift|>>>=
|Bitwise And|&=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ is evaluated. The following table lists all available operators:
| <<greater-than-operator, Greater Than>> | <<painless-operators-boolean, Boolean>> | > | 7 | left -> right
| <<greater-than-or-equal-operator, Greater Than Or Equal>> | <<painless-operators-boolean, Boolean>> | >= | 7 | left -> right
| <<less-than-operator, Less Than>> | <<painless-operators-boolean, Boolean>> | < | 7 | left -> right
| <<less-than-or-equal-operator, Less Than Or Equal>> | <<painless-operators-boolean, Boolean>> | <= | 7 | left -> right
| <<less-than-or-equal-operator, Less Than Or Equal>> | <<painless-operators-boolean, Boolean>> | +++<=+++ | 7 | left -> right
| <<instanceof-operator, Instanceof>> | <<painless-operators-boolean, Boolean>> | instanceof | 8 | left -> right
| <<equality-equals-operator, Equality Equals>> | <<painless-operators-boolean, Boolean>> | == | 9 | left -> right
| <<equality-not-equals-operator, Equality Not Equals>> | <<painless-operators-boolean, Boolean>> | != | 9 | left -> right
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ PUT /test_index
--------------------------------------------------

With the above request the word `bar` gets skipped but a mapping `foo => baz` is still added. However, if the mapping
being added was "foo, baz => bar" nothing would get added to the synonym list. This is because the target word for the
being added was `foo, baz => bar` nothing would get added to the synonym list. This is because the target word for the
mapping is itself eliminated because it was a stop word. Similarly, if the mapping was "bar, foo, baz" and `expand` was
set to `false` no mapping would get added as when `expand=false` the target mapping is the first word. However, if
`expand=true` then the mappings added would be equivalent to `foo, baz => foo, baz` i.e, all mappings other than the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ PUT /test_index
--------------------------------------------------

With the above request the word `bar` gets skipped but a mapping `foo => baz` is still added. However, if the mapping
being added was "foo, baz => bar" nothing would get added to the synonym list. This is because the target word for the
being added was `foo, baz => bar` nothing would get added to the synonym list. This is because the target word for the
mapping is itself eliminated because it was a stop word. Similarly, if the mapping was "bar, foo, baz" and `expand` was
set to `false` no mapping would get added as when `expand=false` the target mapping is the first word. However, if
`expand=true` then the mappings added would be equivalent to `foo, baz => foo, baz` i.e, all mappings other than the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,39 +32,39 @@ Parameters include:

`generate_word_parts`::
If `true` causes parts of words to be
generated: "PowerShot" => "Power" "Shot". Defaults to `true`.
generated: "PowerShot" -> "Power" "Shot". Defaults to `true`.

`generate_number_parts`::
If `true` causes number subwords to be
generated: "500-42" => "500" "42". Defaults to `true`.
generated: "500-42" -> "500" "42". Defaults to `true`.

`catenate_words`::
If `true` causes maximum runs of word parts to be
catenated: "wi-fi" => "wifi". Defaults to `false`.
catenated: "wi-fi" -> "wifi". Defaults to `false`.

`catenate_numbers`::
If `true` causes maximum runs of number parts to
be catenated: "500-42" => "50042". Defaults to `false`.
be catenated: "500-42" -> "50042". Defaults to `false`.

`catenate_all`::
If `true` causes all subword parts to be catenated:
"wi-fi-4000" => "wifi4000". Defaults to `false`.
"wi-fi-4000" -> "wifi4000". Defaults to `false`.

`split_on_case_change`::
If `true` causes "PowerShot" to be two tokens;
("Power-Shot" remains two parts regards). Defaults to `true`.

`preserve_original`::
If `true` includes original words in subwords:
"500-42" => "500-42" "500" "42". Defaults to `false`.
"500-42" -> "500-42" "500" "42". Defaults to `false`.

`split_on_numerics`::
If `true` causes "j2se" to be three tokens; "j"
"2" "se". Defaults to `true`.

`stem_english_possessive`::
If `true` causes trailing "'s" to be
removed for each subword: "O'Neil's" => "O", "Neil". Defaults to `true`.
removed for each subword: "O'Neil's" -> "O", "Neil". Defaults to `true`.

Advance settings include:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,39 +20,39 @@ Parameters include:

`generate_word_parts`::
If `true` causes parts of words to be
generated: "Power-Shot", "(Power,Shot)" => "Power" "Shot". Defaults to `true`.
generated: "Power-Shot", "(Power,Shot)" -> "Power" "Shot". Defaults to `true`.

`generate_number_parts`::
If `true` causes number subwords to be
generated: "500-42" => "500" "42". Defaults to `true`.
generated: "500-42" -> "500" "42". Defaults to `true`.

`catenate_words`::
If `true` causes maximum runs of word parts to be
catenated: "wi-fi" => "wifi". Defaults to `false`.
catenated: "wi-fi" -> "wifi". Defaults to `false`.

`catenate_numbers`::
If `true` causes maximum runs of number parts to
be catenated: "500-42" => "50042". Defaults to `false`.
be catenated: "500-42" -> "50042". Defaults to `false`.

`catenate_all`::
If `true` causes all subword parts to be catenated:
"wi-fi-4000" => "wifi4000". Defaults to `false`.
"wi-fi-4000" -> "wifi4000". Defaults to `false`.

`split_on_case_change`::
If `true` causes "PowerShot" to be two tokens;
("Power-Shot" remains two parts regards). Defaults to `true`.

`preserve_original`::
If `true` includes original words in subwords:
"500-42" => "500-42" "500" "42". Defaults to `false`.
"500-42" -> "500-42" "500" "42". Defaults to `false`.

`split_on_numerics`::
If `true` causes "j2se" to be three tokens; "j"
"2" "se". Defaults to `true`.

`stem_english_possessive`::
If `true` causes trailing "'s" to be
removed for each subword: "O'Neil's" => "O", "Neil". Defaults to `true`.
removed for each subword: "O'Neil's" -> "O", "Neil". Defaults to `true`.

Advance settings include:

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/mapping/types/parent-join.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ within the document (`my_parent`, `my_child`, ...).
It also creates one field per parent/child relation.
The name of this field is the name of the `join` field followed by `#` and the
name of the parent in the relation.
So for instance for the `my_parent` => [`my_child`, `another_child`] relation,
So for instance for the `my_parent` -> [`my_child`, `another_child`] relation,
the `join` field creates an additional field named `my_join_field#my_parent`.

This field contains the parent `_id` that the document links to
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/sql/language/syntax/lexic/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ s|Description
|
|range containment, string matching

|< > <= >= = <=> <> !=
|+++< > <= >= = <=> <> !=+++
|
|comparison

Expand Down