KCL: All keyword arguments should use camelCase (#5481)

Closes #5355
This commit is contained in:
Adam Chalmers
2025-02-25 10:29:59 -06:00
committed by GitHub
parent 2523242bb1
commit 935b4ee7f5
30 changed files with 161 additions and 159 deletions

View File

@ -9,7 +9,7 @@ Take a starting value. Then, for each element of an array, calculate the next va
using the previous value and the element.
```js
reduce(array: [KclValue], start: KclValue, reduce_fn: FunctionSource) -> KclValue
reduce(array: [KclValue], start: KclValue, reduceFn: FunctionSource) -> KclValue
```
@ -19,7 +19,7 @@ reduce(array: [KclValue], start: KclValue, reduce_fn: FunctionSource) -> KclValu
|----------|------|-------------|----------|
| `array` | [`[KclValue]`](/docs/kcl/types/KclValue) | | Yes |
| `start` | [`KclValue`](/docs/kcl/types/KclValue) | Any KCL value. | Yes |
| `reduce_fn` | `FunctionSource` | | Yes |
| `reduceFn` | `FunctionSource` | | Yes |
### Returns