Skip to content

Commit cf84ced

Browse files
committed
Minor formatting fixes in comments in JSON(B) docs
1 parent 3e68575 commit cf84ced

File tree

1 file changed

+8
-16
lines changed

1 file changed

+8
-16
lines changed

NATIVE_POSTGRES_JSON_COMPARED_TO_EQL.md

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) FROM examples;
2727
```
2828

2929
```javascript
30-
// Assume that examples.encrypted_jsonb has JSON objects with
31-
// the shape:
30+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
3231
{
3332
"field_a": 100
3433
}
@@ -56,8 +55,7 @@ WHERE cs_ste_vec_term_v1(examples.encrypted_jsonb, $1) > cs_ste_vec_term_v1($2)
5655
```
5756

5857
```javascript
59-
// Assume that examples.encrypted_jsonb has JSON objects with
60-
// the shape:
58+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
6159
{
6260
"field_a": 100
6361
}
@@ -116,8 +114,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) AS val FROM examples;
116114
With the params...
117115

118116
```javascript
119-
// Assume that examples.encrypted_jsonb has JSON objects with
120-
// the shape:
117+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
121118
{
122119
"field_a": [1, 2, 3]
123120
}
@@ -169,8 +166,7 @@ WHERE (cs_ste_vec_terms_v1(examples.encrypted_jsonb, $1))[1] > cs_ste_vec_term_v
169166
```
170167

171168
```javascript
172-
// Assume that examples.encrypted_jsonb has JSON objects with
173-
// the shape:
169+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
174170
{
175171
"field_a": [4, 5, 6]
176172
}
@@ -227,8 +223,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) FROM examples;
227223
```
228224

229225
```javascript
230-
// Assume that examples.encrypted_jsonb has JSON objects with
231-
// the shape:
226+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
232227
{
233228
"field_a": {
234229
"field_b": 100
@@ -258,8 +253,7 @@ WHERE cs_ste_vec_term_v1(examples.encrypted_jsonb, $1) > cs_ste_vec_term_v1($2)
258253
```
259254

260255
```javascript
261-
// Assume that examples.encrypted_jsonb has JSON objects with
262-
// the shape:
256+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
263257
{
264258
"field_a": {
265259
"field_b": 100
@@ -328,8 +322,7 @@ SELECT cs_ste_vec_value_v1(encrypted_jsonb, $1) AS val FROM examples;
328322
With the params...
329323

330324
```javascript
331-
// Assume that examples.encrypted_jsonb has JSON objects with
332-
// the shape:
325+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
333326
{
334327
"field_a": [1, 2, 3]
335328
}
@@ -381,8 +374,7 @@ WHERE EXISTS (
381374
```
382375

383376
```javascript
384-
// Assume that examples.encrypted_jsonb has JSON objects with
385-
// the shape:
377+
// Assume that examples.encrypted_jsonb has JSON objects with the shape:
386378
{
387379
"field_a": [1, 2, 3]
388380
}

0 commit comments

Comments
 (0)