Skip to content

Commit 2695bf4

Browse files
committed
Update docs
1 parent 8ca7d0c commit 2695bf4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/kcl-std/functions/std-sketch-close.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Construct a line segment from the current origin back to the profile's origin, e
99

1010
```kcl
1111
close(
12-
@sketch: Sketch,
12+
@sketches: [Sketch; 1+],
1313
tag?: TagDecl,
14-
): Sketch
14+
): [Sketch; 1+]
1515
```
1616

1717
If you want to perform some 3-dimensional operation on a sketch, like
@@ -23,12 +23,12 @@ starting point.
2323

2424
| Name | Type | Description | Required |
2525
|----------|------|-------------|----------|
26-
| `sketch` | [`Sketch`](/docs/kcl-std/types/std-types-Sketch) | The sketch you want to close. | Yes |
26+
| `sketches` | [[`Sketch`](/docs/kcl-std/types/std-types-Sketch); 1+] | The sketch you want to close. | Yes |
2727
| `tag` | [`TagDecl`](/docs/kcl-std/types/std-types-TagDecl) | Create a new tag which refers to this line. | No |
2828

2929
### Returns
3030

31-
[`Sketch`](/docs/kcl-std/types/std-types-Sketch) - A sketch is a collection of paths.
31+
[[`Sketch`](/docs/kcl-std/types/std-types-Sketch); 1+]
3232

3333

3434
### Examples

0 commit comments

Comments
 (0)