Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Mar 13, 2024
1 parent a87a728 commit 11af586
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/kcl/std.json
Original file line number Diff line number Diff line change
Expand Up @@ -15943,7 +15943,7 @@
"unpublished": false,
"deprecated": false,
"examples": [
"startSketchOn('-YZ')\n |> startProfileAt([0, 0], %)\n |> arc({\n angleStart: 0,\n angleEnd: 360,\n radius: 10,\n tag: \"edge1\"\n }, %)\n |> extrude(10, %)"
"startSketchOn('-YZ')\n |> startProfileAt([0, 0], %)\n |> arc({\n angle_start: 0,\n angle_end: 360,\n radius: 10,\n tag: \"edge1\"\n }, %)\n |> extrude(10, %)"
]
},
{
Expand Down Expand Up @@ -16005,7 +16005,7 @@
"unpublished": false,
"deprecated": false,
"examples": [
"const myVar = atan(0.5)"
"const myVar = atan(1.0)"
]
},
{
Expand Down Expand Up @@ -52135,7 +52135,7 @@
"unpublished": false,
"deprecated": false,
"examples": [
"startSketchAt([0, 0], %)\n |> line([10, 10], %)"
"startSketchAt([0, 0])\n |> line([10, 10], %)"
]
},
{
Expand Down
8 changes: 4 additions & 4 deletions docs/kcl/std.md
Original file line number Diff line number Diff line change
Expand Up @@ -2742,8 +2742,8 @@ arc(data: ArcData, sketch_group: SketchGroup) -> SketchGroup
startSketchOn('-YZ')
|> startProfileAt([0, 0], %)
|> arc({
angleStart: 0,
angleEnd: 360,
angle_start: 0,
angle_end: 360,
radius: 10,
tag: "edge1"
}, %)
Expand Down Expand Up @@ -3148,7 +3148,7 @@ atan(num: number) -> number
#### Examples

```kcl
const myVar = atan(0.5)
const myVar = atan(1.0)
```

#### Arguments
Expand Down Expand Up @@ -9436,7 +9436,7 @@ startSketchAt(data: LineData) -> SketchGroup
#### Examples

```kcl
startSketchAt([0, 0], %)
startSketchAt([0, 0])
|> line([10, 10], %)
```

Expand Down

0 comments on commit 11af586

Please sign in to comment.