Browse Source

[DOCS] Fix missing spaces (#128550)

mbivert-ipsos 4 months ago
parent
commit
aa0a829a08

+ 6 - 6
docs/reference/query-languages/query-dsl/query-dsl-minimum-should-match.md

@@ -9,12 +9,12 @@ The `minimum_should_match` parameter’s possible values:
 
 | Type | Example | Description |
 | --- | --- | --- |
-| Integer | `3` | Indicates a fixed value regardless of the number ofoptional clauses. |
-| Negative integer | `-2` | Indicates that the total number of optionalclauses, minus this number should be mandatory. |
-| Percentage | `75%` | Indicates that this percent of the total number ofoptional clauses are necessary. The number computed from the percentageis rounded down and used as the minimum. |
-| Negative percentage | `-25%` | Indicates that this percent of the totalnumber of optional clauses can be missing. The number computed from thepercentage is rounded down, before being subtracted from the total todetermine the minimum. |
-| Combination | `3<90%` | A positive integer, followed by the less-thansymbol, followed by any of the previously mentioned specifiers is aconditional specification. It indicates that if the number of optionalclauses is equal to (or less than) the integer, they are all required,but if it’s greater than the integer, the specification applies. In thisexample: if there are 1 to 3 clauses they are all required, but for 4 ormore clauses only 90% are required. |
-| Multiple combinations | `2<-25% 9<-3` | Multiple conditionalspecifications can be separated by spaces, each one only being valid fornumbers greater than the one before it. In this example: if there are 1or 2 clauses both are required, if there are 3-9 clauses all but 25% arerequired, and if there are more than 9 clauses, all but three arerequired. |
+| Integer | `3` | Indicates a fixed value regardless of the number of optional clauses. |
+| Negative integer | `-2` | Indicates that the total number of optional clauses, minus this number should be mandatory. |
+| Percentage | `75%` | Indicates that this percent of the total number of optional clauses are necessary. The number computed from the percentage is rounded down and used as the minimum. |
+| Negative percentage | `-25%` | Indicates that this percent of the total number of optional clauses can be missing. The number computed from the percentage is rounded down, before being subtracted from the total to determine the minimum. |
+| Combination | `3<90%` | A positive integer, followed by the less-than symbol, followed by any of the previously mentioned specifiers is aconditional specification. It indicates that if the number of optional clauses is equal to (or less than) the integer, they are all required, but if it’s greater than the integer, the specification applies. In this example: if there are 1 to 3 clauses they are all required, but for 4 or more clauses only 90% are required. |
+| Multiple combinations | `2<-25% 9<-3` | Multiple conditional specifications can be separated by spaces, each one only being valid for numbers greater than the one before it. In this example: if there are 1 or 2 clauses both are required, if there are 3-9 clauses all but 25% are required, and if there are more than 9 clauses, all but three are required. |
 
 **NOTE:**