From fa0266e26c9c8aee9f01490e7d8a39e31cdccbcd Mon Sep 17 00:00:00 2001 From: Darigov Research <30328618+darigovresearch@users.noreply.github.com> Date: Sun, 23 Jan 2022 09:21:43 +0000 Subject: [PATCH] fix: Small typo corrections in how to extend a pattern --- markdown/dev/howtos/code/extend-pattern/en.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/markdown/dev/howtos/code/extend-pattern/en.md b/markdown/dev/howtos/code/extend-pattern/en.md index 7ebf69faf76..37324a41471 100644 --- a/markdown/dev/howtos/code/extend-pattern/en.md +++ b/markdown/dev/howtos/code/extend-pattern/en.md @@ -29,7 +29,7 @@ In your freshly created pattern folder, you now have to run ```bash npm install --save @freesewing/brian ``` -This will install Brian as a dependency, which you can then access in you pattern (see [examples](/howtos/code/extend-pattern/#examples) below on how to do that). +This will install Brian as a dependency, which you can then access in your pattern (see [examples](/howtos/code/extend-pattern/#examples) below on how to do that). This has to be repeated for every new pattern you create. @@ -50,9 +50,9 @@ You can use the power of robots to install the needed dependencies if you work i - You can now start the actual pattern design work (i.e. editing and adding `src` and `config` files for your pattern. - For dependencies, configure them in `config/dependencies.yaml`. - Run `yarn reconfigure` again, and the magic will make sure that your `package.json` is updated accordingly. -- You can set yourself as author in `config/exceptions.yaml`, and - you guessed it - run `yarn reconfigure` again. +- You can set yourself as an author in `config/exceptions.yaml`, and - you guessed it - run `yarn reconfigure` again. -Now you can work on extending existing patterns into something new and exiting. And the best part about using this method is that making a pull request will be much easier once you're done developing your new pattern. +Now you can work on extending existing patterns into something new and exciting. And the best part about using this method is that making a pull request will be much easier once you're done developing your new pattern. ## Examples