diff --git a/markdown/dev/howtos/ways-to-contribute/proofreading/en.md b/markdown/dev/howtos/ways-to-contribute/proofreading/en.md index 3f816807ce9..4ed056059fe 100644 --- a/markdown/dev/howtos/ways-to-contribute/proofreading/en.md +++ b/markdown/dev/howtos/ways-to-contribute/proofreading/en.md @@ -2,5 +2,5 @@ title: Proofreading --- -You could check the original English text of translations for typos and/or grammar mistakes. +You could check the original English text or translations for typos and/or grammar mistakes. You could propose improvements and watch over a consistent style and tone across FreeSewing’s documentation and written text. diff --git a/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md b/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md index 5b4aabc9270..e268194d357 100644 --- a/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md +++ b/markdown/dev/tutorials/pattern-design/completing-the-neck-opening/en.md @@ -127,7 +127,7 @@ function draftBib({ To add the points, we're using the `Point.flipX()` and `Point.flipY()` methods -here. There's a few new Path methods to, like `close()` and `addClass()`. +here. There's a few new Path methods too, like `close()` and `addClass()`. Perhaps you can figure out what they do? If not, both [the Point documentation](/reference/api/point/) and [the Path diff --git a/markdown/dev/tutorials/pattern-design/constructing-the-neck-opening/en.md b/markdown/dev/tutorials/pattern-design/constructing-the-neck-opening/en.md index 7ac5218b3a4..88d2e46121d 100644 --- a/markdown/dev/tutorials/pattern-design/constructing-the-neck-opening/en.md +++ b/markdown/dev/tutorials/pattern-design/constructing-the-neck-opening/en.md @@ -23,7 +23,7 @@ function draftBib({ points, // highlight-start measurements, - options + options, // highlight-end part, }) { diff --git a/markdown/dev/tutorials/pattern-design/draft-method/en.md b/markdown/dev/tutorials/pattern-design/draft-method/en.md index 28226bdf146..7cd8371d0a6 100644 --- a/markdown/dev/tutorials/pattern-design/draft-method/en.md +++ b/markdown/dev/tutorials/pattern-design/draft-method/en.md @@ -31,18 +31,18 @@ equivalent: ```design/src/bib.mjs -function draftBib({ part }) { +function draftBib(props) { + + return props.part - return part } ``` ```design/src/bib.mjs -function draftBib(props) { - - return props.part +function draftBib({ part }) { + return part } ```