From 2595df432a594617948925a48e8842c3d41e9df2 Mon Sep 17 00:00:00 2001 From: Eoin Shaughnessy Date: Sun, 5 Apr 2026 12:08:48 +0100 Subject: [PATCH] docs: fix misspellings of 'separate' in docs --- DEPENDABOT.md | 2 +- docs/Coding-Standards/Migrating-Legacy-Components.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DEPENDABOT.md b/DEPENDABOT.md index 80ba47f0495..8e7cab603e5 100644 --- a/DEPENDABOT.md +++ b/DEPENDABOT.md @@ -25,7 +25,7 @@ We chose to group all minor and patch updates for [loadable](https://github.com/ ## Group BBC Non-Major Deps -We chose to [group updates to BBC packages](https://github.com/bbc/simorgh/blob/c17b20ef183e8bc94afb66d2414bc7e5ac14a845/.github/dependabot.yml#L14-L19) into one PR for minor and patch updates. Major package updates will generate seperate PRs as you would expect allowing you to bring them in seperately for the feature/breaking change you are introducing. +We chose to [group updates to BBC packages](https://github.com/bbc/simorgh/blob/c17b20ef183e8bc94afb66d2414bc7e5ac14a845/.github/dependabot.yml#L14-L19) into one PR for minor and patch updates. Major package updates will generate separate PRs as you would expect allowing you to bring them in separately for the feature/breaking change you are introducing. ## Ignored Dependencies diff --git a/docs/Coding-Standards/Migrating-Legacy-Components.mdx b/docs/Coding-Standards/Migrating-Legacy-Components.mdx index 24c6841160c..215cf475ef2 100644 --- a/docs/Coding-Standards/Migrating-Legacy-Components.mdx +++ b/docs/Coding-Standards/Migrating-Legacy-Components.mdx @@ -115,7 +115,7 @@ const MyComponent = ({ prop1 }: MyComponentProps) => { } ``` -## ⚠️ When not to declare types/interfaces in a seperate `types.ts` file +## ⚠️ When not to declare types/interfaces in a separate `types.ts` file Usually if it makes more sense to keep the type/interface declaration right next to the component if it is not required or used anywhere else.