diff --git a/markdown/dev/reference/api/pattern/en.md b/markdown/dev/reference/api/pattern/en.md
index a739c643db0..946c1d8f765 100644
--- a/markdown/dev/reference/api/pattern/en.md
+++ b/markdown/dev/reference/api/pattern/en.md
@@ -71,9 +71,11 @@ It just so happens that in most cases, there will be only one settings object in
- `Pattern.activePart`: Holds the id of the active part (while drafting)
- `Pattern.activeSet`: Holds the id of the active set (while drafting)
-- `Pattern.designConfig`: Holds the design's configuration
-- `Pattern.designConfig`: Holds the design's configuration
-- `Pattern.patternConfig`: Holds the pattern's configuration
+- `Pattern.config`: Holds the resolved pattern's configuration
+- `Pattern.designConfig`: Holds the design's configuration before resolution
+- `Pattern.parts`: Holds the parts used in the pattern
+- `Pattern.plugins`: Holds the plugins used in the pattern
+- `Pattern.settings`: Holds the settings used for the pattern
- `Pattern.store`: Holds the pattern-wide Store
- `Pattern.setStores`: Holds an array of stores, one for each set of settings.
diff --git a/markdown/dev/reference/api/pattern/getconfig/en.md b/markdown/dev/reference/api/pattern/getconfig/en.md
index fa4ebcd3804..978cabc0737 100644
--- a/markdown/dev/reference/api/pattern/getconfig/en.md
+++ b/markdown/dev/reference/api/pattern/getconfig/en.md
@@ -10,7 +10,7 @@ housekeeping tasks that are typically done behind the scenes when you call
return a Pattern's internal configuration.
You can use this to see what options a pattern provides, what
-measurments it requires, and so on.
+measurements it requires, and so on.
## Pattern.getConfig() signature
diff --git a/markdown/dev/reference/api/pattern/on/en.md b/markdown/dev/reference/api/pattern/on/en.md
index b911a7aa42c..ba02fe65f45 100644
--- a/markdown/dev/reference/api/pattern/on/en.md
+++ b/markdown/dev/reference/api/pattern/on/en.md
@@ -18,7 +18,7 @@ Pattern pattern.on(string hook, function method)
Refer to [the Lifecycle hooks documentation](/reference/hooks/) for a list
-of all avaialble lifecycle hooks, as well as the signature of the function you
+of all availalble lifecycle hooks, as well as the signature of the function you
should pass it.
diff --git a/markdown/dev/reference/api/pattern/sample/en.md b/markdown/dev/reference/api/pattern/sample/en.md
index 6aacc496939..4262344ad85 100644
--- a/markdown/dev/reference/api/pattern/sample/en.md
+++ b/markdown/dev/reference/api/pattern/sample/en.md
@@ -9,9 +9,9 @@ top of each other.
This method is chainable as it returns the Pattern object
Under the hood, this method will call one of
-[Pattern.sampleOption()](/reference/apu/pattern/sampleoption),
-[Pattern.sampleMeasurement()](/reference/apu/pattern/sampleoption), or
-[Pattern.sampleModels()](/reference/apu/pattern/sampleoption) to sample
+[Pattern.sampleOption()](/reference/api/pattern/sampleoption),
+[Pattern.sampleMeasurement()](/reference/api/pattern/samplemeasurement), or
+[Pattern.sampleModels()](/reference/api/pattern/samplemodels) to sample
an option, a measurement, or different models respectively.
Unlike those three methods where you pass the relevant info to to the method,
@@ -27,9 +27,9 @@ The `settings.sample` object can hold the following properties:
See the specific sample methods below for more details:
-- [Pattern.sampleOption()](/reference/apu/pattern/sampleoption)
-- [Pattern.sampleMeasurement()](/reference/apu/pattern/sampleoption)
-- [Pattern.sampleModels()](/reference/apu/pattern/sampleoption)
+- [Pattern.sampleOption()](/reference/api/pattern/sampleoption)
+- [Pattern.sampleMeasurement()](/reference/api/pattern/samplemeasurement)
+- [Pattern.sampleModels()](/reference/api/pattern/samplemodels)
## Pattern.sample() signature
diff --git a/markdown/dev/reference/api/pattern/samplemodels/en.md b/markdown/dev/reference/api/pattern/samplemodels/en.md
index 2d507046bfe..6f5fd52e592 100644
--- a/markdown/dev/reference/api/pattern/samplemodels/en.md
+++ b/markdown/dev/reference/api/pattern/samplemodels/en.md
@@ -57,5 +57,5 @@ import { cisFemaleAdult } from "@freesewing/models"
const Aaron = new Aaron()
-const svg = aaron.sampleModels(cisFemaleAdult, "34').render()
+const svg = aaron.sampleModels(cisFemaleAdult, "34").render()
```