fix(docs): Correct small typos
This commit is contained in:
parent
265833d419
commit
fea16617d4
31 changed files with 36 additions and 36 deletions
|
@ -2,7 +2,7 @@
|
|||
title: Path.asPathString()
|
||||
---
|
||||
|
||||
This `Path.asPathString()` returs the path as a string that can be used
|
||||
This `Path.asPathString()` returns the path as a string that can be used
|
||||
as the `d` attribute for an SVG `path` element.
|
||||
|
||||
## Signature
|
||||
|
|
|
@ -13,7 +13,7 @@ Path path.reverse(bool cloneAttributes=false)
|
|||
|
||||
If you pass a truthy value to this method, it will return a deep clone of the
|
||||
path, including its attributes. By default, it will return a shallow
|
||||
copy, whithout the attributes.
|
||||
copy, without the attributes.
|
||||
|
||||
## Example
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ Number path.roughLength()
|
|||
|
||||
## Notes
|
||||
|
||||
The `Path.roughLength()` is not intended to give an estimate that is accurate, but rather differentiatate between paths that are a few millimeter long, or meters long.
|
||||
The `Path.roughLength()` is not intended to give an estimate that is accurate, but rather differentiates between paths that are a few millimeter long, or meters long.
|
||||
|
||||
It calculates the length without *walking the (cubic) Bezier curve* making it very fast and very inaccurate (for curves).
|
||||
It is typically used to determine how much precision to apply when walking a curve.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue