aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-11-19 20:32:35 +0200
committerGitHub <[email protected]>2020-11-19 20:32:35 +0200
commit2185803964f0df8a54c490dea9728a59b1bba82d (patch)
tree52eec0a7f7439857893a22a5f77d92d3c93f224f
parent8f3c8a922a50a363063f490f0bfe3af404096cf2 (diff)
downloadbootstrap-2185803964f0df8a54c490dea9728a59b1bba82d.tar.xz
bootstrap-2185803964f0df8a54c490dea9728a59b1bba82d.zip
Fix a few typos (#32204)
-rw-r--r--site/content/docs/5.0/forms/form-control.md2
-rw-r--r--site/content/docs/5.0/helpers/ratio.md2
-rw-r--r--site/content/docs/5.0/migration.md2
-rw-r--r--site/content/docs/5.0/utilities/interactions.md2
4 files changed, 4 insertions, 4 deletions
diff --git a/site/content/docs/5.0/forms/form-control.md b/site/content/docs/5.0/forms/form-control.md
index 3430626c9..e35f09967 100644
--- a/site/content/docs/5.0/forms/form-control.md
+++ b/site/content/docs/5.0/forms/form-control.md
@@ -25,7 +25,7 @@ Set heights using classes like `.form-control-lg` and `.form-control-sm`.
{{< example >}}
<input class="form-control form-control-lg" type="text" placeholder=".form-control-lg" aria-label=".form-control-lg example">
-<input class="form-control" type="text" placeholder="Default input" aria-label="deafult input example">
+<input class="form-control" type="text" placeholder="Default input" aria-label="default input example">
<input class="form-control form-control-sm" type="text" placeholder=".form-control-sm" aria-label=".form-control-sm example">
{{< /example >}}
diff --git a/site/content/docs/5.0/helpers/ratio.md b/site/content/docs/5.0/helpers/ratio.md
index bde4e254c..62e173ff1 100644
--- a/site/content/docs/5.0/helpers/ratio.md
+++ b/site/content/docs/5.0/helpers/ratio.md
@@ -1,7 +1,7 @@
---
layout: docs
title: Ratios
-description: Use generated psuedo elements to make an element maintain the aspect ratio of your choosing. Perfect for responsively handling video or slideshow embeds based on the width of the parent.
+description: Use generated pseudo elements to make an element maintain the aspect ratio of your choosing. Perfect for responsively handling video or slideshow embeds based on the width of the parent.
group: helpers
toc: true
---
diff --git a/site/content/docs/5.0/migration.md b/site/content/docs/5.0/migration.md
index 7c06eec5d..dab1bd7df 100644
--- a/site/content/docs/5.0/migration.md
+++ b/site/content/docs/5.0/migration.md
@@ -317,7 +317,7 @@ Badges were overhauled to better differentiate themselves from buttons and to be
#### Buttons
-- The checkbox/radio toggle is removed from the button plugin in favour of a CSS only solution, which is documented in the [form checks and radios]({{< docsref "/forms/checks-radios#toggle-buttons" >}}) docs. The `.btn-check` class can be added to inputs, any label with `.btn` and modifier class can be used to theme the labels. [See #30650](https://github.com/twbs/bootstrap/pull/30650).
+- The checkbox/radio toggle is removed from the button plugin in favor of a CSS only solution, which is documented in the [form checks and radios]({{< docsref "/forms/checks-radios#toggle-buttons" >}}) docs. The `.btn-check` class can be added to inputs, any label with `.btn` and modifier class can be used to theme the labels. [See #30650](https://github.com/twbs/bootstrap/pull/30650).
#### Cards
diff --git a/site/content/docs/5.0/utilities/interactions.md b/site/content/docs/5.0/utilities/interactions.md
index bdd2b6218..fdb6e1a48 100644
--- a/site/content/docs/5.0/utilities/interactions.md
+++ b/site/content/docs/5.0/utilities/interactions.md
@@ -22,7 +22,7 @@ Bootstrap provides `.pe-none` and `.pe-auto` classes to prevent or add element i
{{< example >}}
<p><a href="#" class="pe-none" tabindex="-1" aria-disabled="true">This link</a> can not be clicked.</p>
-<p><a href="#" class="pe-auto">This link</a> can be clicked (this is default behaviour).</p>
+<p><a href="#" class="pe-auto">This link</a> can be clicked (this is default behavior).</p>
<p class="pe-none"><a href="#" tabindex="-1" aria-disabled="true">This link</a> can not be clicked because the <code>pointer-events</code> property is inherited from its parent. However, <a href="#" class="pe-auto">this link</a> has a <code>pe-auto</code> class and can be clicked.</p>
{{< /example >}}