Fix typos

This commit is contained in:
Adam Chalmers
2025-05-09 16:53:05 -05:00
parent 7e2a75509b
commit 1a1c2c038b
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 87 KiB

View File

@ -27,7 +27,7 @@ startSketchOn(XY)
|> startProfile(at = [0, 0])
|> line(end = [3, 0])
|> line(end = [0, 4])
|> line(endAbsolute = [0, 0]))
|> line(endAbsolute = [0, 0])
|> close()
```

View File

@ -75,7 +75,7 @@ There's an optional argument called `angle`. In the above example, we didn't pro
```kcl=donut240
startSketchOn(XZ)
|> circle(center = [-200, 0], radius = 100)
|> revolve(axis = Y)
|> revolve(axis = Y, angle = 240)
```
![The circle, revolved partway around the axis, to make part of a donut](images/dynamic/donut240.png)