1
0
Fork 0

fix(markdown): Typos in pattern design tutorial

This commit is contained in:
Benjamin Fan 2024-01-16 20:04:00 -08:00
parent a11058fe1d
commit e9c75f11e4
13 changed files with 18 additions and 20 deletions

View file

@ -263,7 +263,7 @@ The `title` and `scalebox` macros to be precise.
Before we add the title, we will also set the cutlist via a method that was added to the
store by one of the core plugins.
As a matter of fact, all of these snippets, macros, and store methods are provided by plugings.
As a matter of fact, all of these snippets, macros, and store methods are provided by plugins.
For more details, [refer to the plugin guide](/guides/plugins).
<Example previewFirst tutorial caption="This looks way better">

View file

@ -7,7 +7,7 @@ Laser cutters is merely an example of a situation where your user wants not the
complete detailed pattern with all annotations, but just the outlines.
Essentially what we had at the end of part 2 of this tutorial.
Since then, we've added a bunch of embellisments, and perhaps the user does
Since then, we've added a bunch of embellishments, and perhaps the user does
not want those.
Well, good news: there is a setting for that too. That setting is `complete`,

View file

@ -336,5 +336,3 @@ function draftBib({
}
```
</Example>
Now the first thing you should know is: **core does not care**. We are

View file

@ -7,7 +7,7 @@ Strictly speaking, this tutorial is about learning to use FreeSewing's core
library to do parametric design, and we made great strides in that regard.
But FreeSewing is a lot more than its core library, and you might be wondering
how your pattern options magically end up in the development environmnt under
how your pattern options magically end up in the development environment under
**Design options**:
![Design options menu](./options.png)
@ -29,7 +29,7 @@ options: {
It's just a silly example, but there's two important take-aways here:
- You don't have to use options in your design. You can add options for things
that are not about the desing, but that you still want to capture the user's
that are not about the design, but that you still want to capture the user's
input for (like shipping preferences in this case).
- You can add extra properties to an option. Each option type has it's required
properties. But you can add more and use them as you see fit.

View file

@ -49,11 +49,11 @@ function draftBib({
```
</Example>
As you can see from the source, we can descructure an `sa` variable (short for
As you can see from the source, we can destructure an `sa` variable (short for
seam allowance) that will hold either:
- `false` if the user does not want seam allowance
- A value in `mm` indicating how much seam allwance the user wants
- A value in `mm` indicating how much seam allowance the user wants
To add seam allowance to our path, we just `offset` it by `sa` and add
some classes to it to style it. But, crucially, only if the user wants

View file

@ -58,7 +58,7 @@ option](test-option-lengthratio.png)
### neckRatio
The `neckRatio` option will determine the size of the neck opening. For a the
The `neckRatio` option will determine the size of the neck opening. For the
same `head` measurement, varying this option should result in bibs with
increasingly larger neck opening.