Skip to content

Commit 6e176a3

Browse files
committed
Change braces in documentation.
Signed-off-by: currantw <[email protected]>
1 parent c1666ee commit 6e176a3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

core/src/main/java/org/opensearch/sql/analysis/Analyzer.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -458,37 +458,37 @@ public LogicalPlan visitEval(Eval node, AnalysisContext context) {
458458
* <p>Input Data:
459459
*
460460
* <pre>
461-
* [
461+
* {
462462
* struct: {
463463
* integer: 0,
464464
* nested_struct: { string: "value" }
465465
* }
466-
* ]
466+
* }
467467
* </pre>
468468
*
469469
* Query 1: <code>flatten struct</code>
470470
*
471471
* <pre>
472-
* [
472+
* {
473473
* struct: {
474474
* integer: 0,
475475
* nested_struct: { string: "value" }
476476
* },
477477
* integer: 0,
478478
* nested_struct: { string: "value" }
479-
* ]
479+
* }
480480
* </pre>
481481
*
482482
* Query 2: <code>flatten struct.nested_struct</code>
483483
*
484484
* <pre>
485-
* [
485+
* {
486486
* struct: {
487487
* integer: 0,
488488
* nested_struct: { string: "value" },
489489
* string: "value"
490490
* }
491-
* ]
491+
* }
492492
* </pre>
493493
*/
494494
@Override

0 commit comments

Comments
 (0)