diff --git a/docs/painless/painless-lang-spec/painless-operators-general.asciidoc b/docs/painless/painless-lang-spec/painless-operators-general.asciidoc index 6db9b3d5d1e..6c17e36b3fc 100644 --- a/docs/painless/painless-lang-spec/painless-operators-general.asciidoc +++ b/docs/painless/painless-lang-spec/painless-operators-general.asciidoc @@ -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|&= diff --git a/docs/painless/painless-lang-spec/painless-operators.asciidoc b/docs/painless/painless-lang-spec/painless-operators.asciidoc index b51e94088a6..b105f4ef6fa 100644 --- a/docs/painless/painless-lang-spec/painless-operators.asciidoc +++ b/docs/painless/painless-lang-spec/painless-operators.asciidoc @@ -45,7 +45,7 @@ is evaluated. The following table lists all available operators: | <> | <> | > | 7 | left -> right | <> | <> | >= | 7 | left -> right | <> | <> | < | 7 | left -> right -| <> | <> | <= | 7 | left -> right +| <> | <> | +++<=+++ | 7 | left -> right | <> | <> | instanceof | 8 | left -> right | <> | <> | == | 9 | left -> right | <> | <> | != | 9 | left -> right diff --git a/docs/reference/analysis/tokenfilters/synonym-graph-tokenfilter.asciidoc b/docs/reference/analysis/tokenfilters/synonym-graph-tokenfilter.asciidoc index 13e7609ac7e..e6bc76e408f 100644 --- a/docs/reference/analysis/tokenfilters/synonym-graph-tokenfilter.asciidoc +++ b/docs/reference/analysis/tokenfilters/synonym-graph-tokenfilter.asciidoc @@ -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 diff --git a/docs/reference/analysis/tokenfilters/synonym-tokenfilter.asciidoc b/docs/reference/analysis/tokenfilters/synonym-tokenfilter.asciidoc index 58caf8bb282..5d4b736501c 100644 --- a/docs/reference/analysis/tokenfilters/synonym-tokenfilter.asciidoc +++ b/docs/reference/analysis/tokenfilters/synonym-tokenfilter.asciidoc @@ -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 diff --git a/docs/reference/analysis/tokenfilters/word-delimiter-graph-tokenfilter.asciidoc b/docs/reference/analysis/tokenfilters/word-delimiter-graph-tokenfilter.asciidoc index 66e7b18c744..65cdd2575be 100644 --- a/docs/reference/analysis/tokenfilters/word-delimiter-graph-tokenfilter.asciidoc +++ b/docs/reference/analysis/tokenfilters/word-delimiter-graph-tokenfilter.asciidoc @@ -32,23 +32,23 @@ 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; @@ -56,7 +56,7 @@ Parameters include: `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" @@ -64,7 +64,7 @@ Parameters include: `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: diff --git a/docs/reference/analysis/tokenfilters/word-delimiter-tokenfilter.asciidoc b/docs/reference/analysis/tokenfilters/word-delimiter-tokenfilter.asciidoc index d0cea87176d..25074b2725e 100644 --- a/docs/reference/analysis/tokenfilters/word-delimiter-tokenfilter.asciidoc +++ b/docs/reference/analysis/tokenfilters/word-delimiter-tokenfilter.asciidoc @@ -20,23 +20,23 @@ 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; @@ -44,7 +44,7 @@ Parameters include: `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" @@ -52,7 +52,7 @@ Parameters include: `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: diff --git a/docs/reference/mapping/types/parent-join.asciidoc b/docs/reference/mapping/types/parent-join.asciidoc index 7b11026df52..88e0c6dac4d 100644 --- a/docs/reference/mapping/types/parent-join.asciidoc +++ b/docs/reference/mapping/types/parent-join.asciidoc @@ -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 diff --git a/docs/reference/sql/language/syntax/lexic/index.asciidoc b/docs/reference/sql/language/syntax/lexic/index.asciidoc index 5e784a4d495..323400bde43 100644 --- a/docs/reference/sql/language/syntax/lexic/index.asciidoc +++ b/docs/reference/sql/language/syntax/lexic/index.asciidoc @@ -183,7 +183,7 @@ s|Description | |range containment, string matching -|< > <= >= = <=> <> != +|+++< > <= >= = <=> <> !=+++ | |comparison