]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fixed some grammar issues
authorAndrew Dawes <andrewsdawes@gmail.com>
Fri, 3 Mar 2023 06:59:45 +0000 (07:59 +0100)
committerMark Otto <otto@github.com>
Sat, 4 Mar 2023 19:50:05 +0000 (11:50 -0800)
site/content/docs/5.3/extend/approach.md
site/content/docs/5.3/forms/validation.md
site/content/docs/5.3/migration.md

index e19891e94b8d98a191f03787686f9519b919d5ff..392aef4d37d3a77c31918e9b8513aeb1af4dcb98 100644 (file)
@@ -18,7 +18,7 @@ We'll dive into each of these more throughout, but at a high level, here's what
 - Components should be responsive and mobile-first
 - Components should be built with a base class and extended via modifier classes
 - Component states should obey a common z-index scale
-- Whenever possible, prefer a HTML and CSS implementation over JavaScript
+- Whenever possible, prefer an HTML and CSS implementation over JavaScript
 - Whenever possible, use utilities over custom styles
 - Whenever possible, avoid enforcing strict HTML requirements (children selectors)
 
index 0371d229d444048bc0443648af983b4c0a912541..5eb18f02571eeed14e18e6a11f5fcaf3ee5b0ad9 100644 (file)
@@ -371,7 +371,7 @@ These variables are also color mode adaptive, meaning they change color while in
 
 ### Sass mixins
 
-Two mixins are combined together, through our [loop](#loop), to generate our form validation feedback styles.
+Two mixins are combined, through our [loop](#loop), to generate our form validation feedback styles.
 
 {{< scss-docs name="form-validation-mixins" file="scss/mixins/_forms.scss" >}}
 
index 3cf60aaf28f3e5e7e5a7128f2a26094bd50ed021..0321e96616493db2781dc0cd64357875d616bb58 100644 (file)
@@ -214,9 +214,9 @@ We've also introduced a new `.progress-stacked` class to more logically wrap [mu
 
 ### Utilities
 
-- <span class="badge text-warning-emphasis bg-warning-subtle">Deprecated</span> `.text-muted` will be be replaced by `.text-body-secondary` in v6.
+- <span class="badge text-warning-emphasis bg-warning-subtle">Deprecated</span> `.text-muted` will be replaced by `.text-body-secondary` in v6.
 
-  With the addition of the expanded theme colors and variables, the `.text-muted` variables and utility have been deprecated with v5.3.0. Its default value has also has been reassigned to the new `--bs-secondary-color` CSS variable to better support color modes. It will be removed in v6.0.0.
+  With the addition of the expanded theme colors and variables, the `.text-muted` variables and utility have been deprecated with v5.3.0. Its default value has also been reassigned to the new `--bs-secondary-color` CSS variable to better support color modes. It will be removed in v6.0.0.
 
 - Adds new `.overflow-x`, `.overflow-y`, and several `.object-fit-*` utilities. _The object-fit property is used to specify how an `<img>` or `<video>` should be resized to fit its container, giving us a responsive alternative to using `background-image` for a resizable fill/fit image._