1
0
Fork 0

fix(markdown) Fix typos

This commit is contained in:
Benjamin Fan 2024-01-21 11:16:40 -08:00
parent 78925133f4
commit 4d404dd3cc
57 changed files with 76 additions and 78 deletions

View file

@ -4,7 +4,7 @@ title: Part.asRenderProps()
The `Part.asRenderProps()` method will return the data stored in the
part as a serializable Javascript object. This method is typically
part as a serializable JavaScript object. This method is typically
not invoked directly but rather called under the hood as a result of
calling [`Pattern.getRenderProps()`](/reference/core/pattern/getrenderprops).
@ -16,7 +16,7 @@ Object part.asRenderProps()
## Returned object properties
This returns Javascript object has the following properties:
This returns JavaScript object has the following properties:
| Name | Description |
| ----:| ----------- |

View file

@ -60,7 +60,7 @@ const part = {
### hide.inherited
To hide parts that you have not explicitly included in this part that may be pulled in by the explictly included `from` and `after` parts, set `hide.inherited` to a truthy value.
To hide parts that you have not explicitly included in this part that may be pulled in by the explicitly included `from` and `after` parts, set `hide.inherited` to a truthy value.
<Note>This setting will hide any part included as `from` or `after` by your explicitly included `from` part or its dependency chain. It will also hide any part included as `from` by your explicitly included `after` part or its dependency chain. It will not hide the `after` parts of `after` parts</Note>

View file

@ -37,7 +37,7 @@ access the following properties:
| `log` | See [the logging documentation](/reference/api/store/log) |
| `macro` | See [the macros documentation](/reference/macros/) |
| `store` | See [the store documentation](/reference/api/store) |
| `units` | A version of [`utils.units()`](/reference/api/utils/units) that is preconfigured with the user's chosenunits |
| `units` | A version of [`utils.units()`](/reference/api/utils/units) that is preconfigured with the user's chosen units |
| `utils` | See [the utils documentation](/reference/api/utils) |
| `Bezier` | The [bezier-js](https://pomax.github.io/bezierjs/) library's `Bezier` named export |
|| **_Return value_** |