Commit a1a07585 authored by Jason Fox's avatar Jason Fox
Browse files

Use `•` for list elements within Examples.

parent b4d0646f
Loading
Loading
Loading
Loading
+84 −51
Original line number Diff line number Diff line
@@ -747,9 +747,10 @@ conditions apply:

The Query Term value, [color=="red"]{.HTML-Code}:

- Matches ["red"]{.HTML-Code} as it is identical or equivalent to the target
•  Matches ["red"]{.HTML-Code} as it is identical or equivalent to the target
value.
- Matches [["blue","red","green"]]{.HTML-Code} as the element

•  Matches [["blue","red","green"]]{.HTML-Code} as the element
  ["red"]{.HTML-Code} is included in an array.

>>>
@@ -769,9 +770,10 @@ The Query Term value, [color=="red"]{.HTML-Code}:

The Query Term value,  [color=="black","red"]{.HTML-Code}:

- Matches ["red"]{.HTML-Code} as it is identical or equivalent to one of the
•  Matches ["red"]{.HTML-Code} as it is identical or equivalent to one of the
list values
- Matches [["red","blue"]]{.HTML-Code} as the target value includes

•  Matches [["red","blue"]]{.HTML-Code} as the target value includes
one of the Query Term values

>>>
@@ -790,7 +792,7 @@ The Query Term value, [color=="black","red"]{.HTML-Code}:

The Query Term value, [temperature==10..20]{.HTML-Code}:

- Matches [15]{.HTML-Code} as it lies between 10 and 20.
•  Matches [15]{.HTML-Code} as it lies between 10 and 20.

>>>

@@ -811,7 +813,7 @@ The Query Term value, [temperature==10..20]{.HTML-Code}:

The Query Term value, [description[​fr]=="pain"]{.HTML-Code}

-  Matches to the _`languageMap`_  below as the value
•  Matches to the _`languageMap`_  below as the value
["pain"]{.HTML-Code} corresponds to the key ["fr"]{.HTML-Code}

```json
@@ -822,7 +824,7 @@ The Query Term value, [description[​fr]=="pain"]{.HTML-Cod
}
```

-  Does not match to the _`languageMap`_ below as the value
•  Does not match to the _`languageMap`_ below as the value
["pain"]{.HTML-Code}, although present in the _`languageMap`_, does not correspond to
the key ["fr"]{.HTML-Code}

@@ -834,7 +836,7 @@ The Query Term value, [description[​fr]=="pain"]{.HTML-Cod
}
```

-  Matches to the _`languageMap`_  below as the value
•  Matches to the _`languageMap`_  below as the value
["pain"]{.HTML-Code} corresponds an element withn the key ["fr"]{.HTML-Code}

```json
@@ -845,7 +847,7 @@ The Query Term value, [description[​fr]=="pain"]{.HTML-Cod
}
```

-  Does not match to the _`languageMap`_ below as the value
•  Does not match to the _`languageMap`_ below as the value
["pain"]{.HTML-Code} does not correspond to an element within the key ["fr"]{.HTML-Code}

```json
@@ -874,7 +876,7 @@ The Query Term value, [description[​fr]=="pain"]{.HTML-Cod

The Query Term value, [description[\*]=="pain"]{.HTML-Code}

-  Matches to the _`languageMap`_ below as the value ["pain"]{.HTML-Code} can be found.
•  Matches to the _`languageMap`_ below as the value ["pain"]{.HTML-Code} can be found.

```json
{
@@ -884,8 +886,8 @@ The Query Term value, [description[\*]=="pain"]{.HTML-Code}
}
```

-  Also Matches to the _`languageMap`_  below as the value ["pain"]{.HTML-Code} can be found as an element
   of an array.
•  Also Matches to the _`languageMap`_  below as the value ["pain"]{.HTML-Code} can be found
as an element of an array.

```json
{
@@ -911,12 +913,31 @@ The Query Term value, [description[\*]=="pain"]{.HTML-Code}

The Query Term value, [color=="http://example/red"]{.HTML-Code}

- Matches to the _`object`_ ["http://example.com/red"]{.HTML-Code}  as it is identical or equivalent to the target value.
- Matches to the _`objectList`_ [["http://example.com/red"]]{.HTML-Code}  as it is included in the array
- Matches  to the _`objectList`_ [["http://example.com/blue"," http://example.com/red","
      http://example.com/green"]]{.HTML-Code}) as the element ["http://example.com/red"]{.HTML-Code}
•  Matches to the _`object`_ below  as it is identical or equivalent to the target value.

```json
"http://example.com/red"
```

•  Matches to the _`objectList`_ below  as it is included in the array

```json
[
  "http://example.com/red"
]
```

•  Matches  to the _`objectList`_  below as the element ["http://example.com/red"]{.HTML-Code}
  is included in the array

```json
[
  "http://example.com/blue",
  "http://example.com/red",
  "http://example.com/green"
]
```

>>>

<!-- prettier-ignore-start -->
@@ -935,11 +956,23 @@ The Query Term value, [color&#61;&#61;"http://example/red"]{.HTML-Code}

The Query Term value, [color&#61;&#61;"http://example/black","http://example/red"]{.HTML-Code}

- Matches to  the _`object`_  ["http://example.com/red"]{.HTML-Code}  as it is identical or equivalent to one of the list values
- Matches to  the _`object`_  [&#91;"http://example.com/blue"," http://example.com/red","
      http://example.com/green"&#93;]{.HTML-Code}) as the element ["http://example.com/red"]{.HTML-Code}
&bull;  Matches to  the _`object`_ as it is identical or equivalent to one of the list values

```json
"http://example.com/red"
```

&bull;  Matches to  the _`object`_  as the element ["http://example.com/red"]{.HTML-Code}
is included  as one of the elements within the array.

```json
[
  "http://example.com/blue",
  "http://example.com/red",
  "http://example.com/green"
]
```

>>>

<!-- prettier-ignore-start -->