Skip to content

Commit

Permalink
Backport of docs: Fix invalid JSON into release/1.15.x (#18961)
Browse files Browse the repository at this point in the history
backport of commit cc40e08
  • Loading branch information
blake authored Sep 21, 2023
1 parent 40a98f4 commit 8ad79aa
Show file tree
Hide file tree
Showing 19 changed files with 194 additions and 155 deletions.
2 changes: 1 addition & 1 deletion website/content/api-docs/catalog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ $ curl \
"Port": 8000,
"Namespace": "default"
}
}
]
}
```

Expand Down
18 changes: 11 additions & 7 deletions website/content/docs/architecture/coordinates.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,18 @@ once you have their coordinates. Here's a sample coordinate, as returned from th
<CodeBlockConfig heading="Sample coordinate from Coordinate endpoint" hideClipboard>

```json
...
"Coord": {
"Adjustment": 0.1,
"Error": 1.5,
"Height": 0.02,
"Vec": [0.34,0.68,0.003,0.01,0.05,0.1,0.34,0.06]
[
{
"Node": "agent-one",
"Segment": "",
"Coord": {
"Adjustment": 0.1,
"Error": 1.5,
"Height": 0.02,
"Vec": [0.34,0.68,0.003,0.01,0.05,0.1,0.34,0.06]
}
}
...
]
```

</CodeBlockConfig>
Expand Down
Loading

0 comments on commit 8ad79aa

Please sign in to comment.