1
0
Fork 0

fix(docs): Pattern tutorial: Change "you/your" to "we/us/our". Fixes #2982

This commit is contained in:
Benjamin F 2023-01-06 19:29:29 -08:00
parent 6c97d081e7
commit 4def5963a0
20 changed files with 383 additions and 393 deletions

View file

@ -8,8 +8,8 @@ we are going to draft our pattern according to the measurements provided to us.
Which begs the question, which measurements?
It is you, as the pattern designer, who decides which measurements are used
to draft your pattern. For our bib, the only measurement we need is the
It is we, as the pattern designers, who decides which measurements are used
to draft our pattern. For our bib, the only measurement we need is the
_head circumference_.
So let's add it as a required measurement.
@ -21,7 +21,7 @@ In our `bib.mjs` file, on the `bib` object, we'll add a new key called
for this part.
We are going to use *the official name* of the measurement. For head
circumference, that name is `head`.
circumference, that name is `head`.
```design/src/bib.mjs
function draftBib({ part }) {
@ -40,22 +40,22 @@ export const bib = {
Now everybody knows this part requires the `head` measurement.
This change will also get picked up by the development environment, and you'll now see this screen:
This change will also get picked up by the development environment, and we'll now see this screen:
![This screen tells you that you are missing some required measurements](./required-measurements.png)
![This screen tells us that we are missing some required measurements](./required-measurements.png)
Since it's just one measurement, let's simply enter a value by hand.
For example `38` as 38 cm is a realistic head circumference measurement for a baby.
Enter `38` in the box, and click on **Draft Design** in the sidebar under the **View** heading.
This brings you back to our work in progress:
This brings us back to our work in progress:
## Notes
### Why using standard measurements names matters
In principle, you can use any name you want for your measurements.
In principle, we can use any name we want for our measurements.
Our core library really doesn't care.
However, if everybody uses their own (names for) measurements, then people
@ -67,5 +67,3 @@ invent your own.
See our [best practices](/guides/best-practices/reuse-measurements) on this
topic for details.