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

@ -12,7 +12,7 @@ Point utils.applyTransformToPoint(string transform, Point A)
## Parameters
1st parameter is a SVG transform string. Eg: `scale(sfx, sfy)` where `sfx` and `sfy` are the scaling factors along the x-axis and y-axis respectively.
1st parameter is a SVG transform string. E.g.: `scale(sfx, sfy)` where `sfx` and `sfy` are the scaling factors along the x-axis and y-axis respectively.
2nd parameter is the original point that is to be transformed. It is a [Point](/reference/api/point) object.

View file

@ -19,13 +19,13 @@ Array generateStackTransform(
## Parameters
The first and second paramter set the value of the *translate transform* along the X and Y axis in millimeter.
The first and second parameters set the value of the *translate transform* along the X and Y axis in millimeter.
In other words, it moves the stack.
The third parameter sets the *rotate transform* in degrees.
In other words, it rotates the stack.
The fourth and fifth parameter flip the part along the X or Y axis respectively.
The fourth and fifth parameters flip the part along the X or Y axis respectively.
<Note compact>
This is a low-level method to facilitate intervening in the pattern layout late in the draft process.

View file

@ -2,7 +2,7 @@
title: utils.linesIntersect()
---
The `utils.linesInersect()` function finds the intersection between two line
The `utils.linesIntersect()` function finds the intersection between two line
segments. Returns a [Point](../point) object for the intersection, or `false`
if the lines don't intersect.

View file

@ -49,7 +49,7 @@ The configuration object takes 3 top-level properties:
- `p`: Specifies configuration for how to merge the part name translations (under `p` in the translation files)
- `o`: Specifies configuration for how to merge the option translations (under `p` in the translation files)
For **each of the `s`, `p`, and `o` keys** you can specificy the followig properties:
For **each of the `s`, `p`, and `o` keys** you can specify the following properties:
- `drop`: An Array with the keys of entries to not merge (drop). Keys that are not in this array will be merged.
- `keep`: An Array with the keys of entries to merge (keep). Keys that are not in this array will not be merged.