Skip to content

Commit 7cf9d51

Browse files
authored
Fix formatting of polygon values in clause specification
missed some commas at end of lines
1 parent 160a538 commit 7cf9d51

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

standard/clause_specification_text.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1700,8 +1700,8 @@ Domain example of a Polygon with two holes, one square, the other triangular:
17001700
"dataType": "polygon",
17011701
"coordinates": ["x","y"],
17021702
"values": [
1703-
[ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ]
1704-
[ [100.3, 0.2], [100.3, 0.4], [100.5, 0.4], [100.5, 0.2], [100.3, 0.2] ]
1703+
[ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ],
1704+
[ [100.3, 0.2], [100.3, 0.4], [100.5, 0.4], [100.5, 0.2], [100.3, 0.2] ],
17051705
[ [100.7, 0.6], [100.8, 0.8], [100.9, 0.6], [100.7, 0.6] ] ]
17061706
]
17071707
},
@@ -1726,8 +1726,8 @@ Coverage example of a Polygon with two holes, one square, the other triangular:
17261726
"dataType": "polygon",
17271727
"coordinates": ["x","y"],
17281728
"values": [
1729-
[ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ]
1730-
[ [100.3, 0.2], [100.3, 0.4], [100.5, 0.4], [100.5, 0.2], [100.3, 0.2] ]
1729+
[ [ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0] ],
1730+
[ [100.3, 0.2], [100.3, 0.4], [100.5, 0.4], [100.5, 0.2], [100.3, 0.2] ],
17311731
[ [100.7, 0.6], [100.8, 0.8], [100.9, 0.6], [100.7, 0.6] ] ]
17321732
]
17331733
},

0 commit comments

Comments
 (0)