Skip to content

Commit eae51cd

Browse files
marcwrobelmdo
authored andcommittedJul 18, 2022
Fix various small typos in documentation (#36762)
1 parent 705d685 commit eae51cd

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed
 

‎site/content/docs/5.2/about/translations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Links to community-translated Bootstrap documentation sites.
55
group: about
66
---
77

8-
Community members have translated Bootstrap's documentation into various languages. None are officially supported and they may not always be up to date.
8+
Community members have translated Bootstrap's documentation into various languages. None are officially supported and they may not always be up-to-date.
99

1010
{{< translations.inline >}}
1111
<ul>

‎site/content/docs/5.2/content/reboot.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ $font-family-sans-serif:
7676
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
7777
```
7878

79-
Note that because the font stack includes emoji fonts, many common symbol/dingbat Unicode characters will be rendered as multi-colored pictographs. Their appearance will vary, depending on the style used in the browser/platform's native emoji font, and they won't be affected by any CSS `color` styles.
79+
Note that because the font stack includes emoji fonts, many common symbol/dingbat Unicode characters will be rendered as multicolored pictographs. Their appearance will vary, depending on the style used in the browser/platform's native emoji font, and they won't be affected by any CSS `color` styles.
8080

8181
This `font-family` is applied to the `<body>` and automatically inherited globally throughout Bootstrap. To switch the global `font-family`, update `$font-family-base` and recompile Bootstrap.
8282

‎site/content/docs/5.2/customize/css-variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ a {
5757

5858
## Grid breakpoints
5959

60-
While we include our grid breakpoints as CSS variables (except for `xs`), be aware that **CSS variables do not work in media queries**. This is by design in the CSS spec for variables, but may change in coming years with support for `env()` variables. Check out [this Stack Overflow answer](https://stackoverflow.com/a/47212942) for some helpful links. In the mean time, you can use these variables in other CSS situations, as well as in your JavaScript.
60+
While we include our grid breakpoints as CSS variables (except for `xs`), be aware that **CSS variables do not work in media queries**. This is by design in the CSS spec for variables, but may change in coming years with support for `env()` variables. Check out [this Stack Overflow answer](https://stackoverflow.com/a/47212942) for some helpful links. In the meantime, you can use these variables in other CSS situations, as well as in your JavaScript.

‎site/content/docs/5.2/extend/approach.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The same goes for more complex components. While we *could* write our own form v
6969

7070
## Utilities
7171

72-
Utility classes—formerly helpers in Bootstrap 3—are a powerful ally in combatting CSS bloat and poor page performance. A utility class is typically a single, immutable property-value pairing expressed as a class (e.g., `.d-block` represents `display: block;`). Their primary appeal is speed of use while writing HTML and limiting the amount of custom CSS you have to write.
72+
Utility classes—formerly helpers in Bootstrap 3—are a powerful ally in combating CSS bloat and poor page performance. A utility class is typically a single, immutable property-value pairing expressed as a class (e.g., `.d-block` represents `display: block;`). Their primary appeal is speed of use while writing HTML and limiting the amount of custom CSS you have to write.
7373

7474
Specifically regarding custom CSS, utilities can help combat increasing file size by reducing your most commonly repeated property-value pairs into single classes. This can have a dramatic effect at scale in your projects.
7575

‎site/content/docs/5.2/getting-started/contribute.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ We maintain the list of browsers supported through Autoprefixer in a separate fi
5050

5151
## RTLCSS
5252

53-
Bootstrap uses [RTLCSS](https://rtlcss.com/) to process compiled CSS and convert them to RTL – basically replacing horizontal direction aware properties (eg. `padding-left`) with their opposite. It allows us only write our CSS a single time and make minor tweaks using RTLCSS [control](https://rtlcss.com/learn/usage-guide/control-directives/) and [value](https://rtlcss.com/learn/usage-guide/value-directives/) directives.
53+
Bootstrap uses [RTLCSS](https://rtlcss.com/) to process compiled CSS and convert them to RTL – basically replacing horizontal direction aware properties (e.g. `padding-left`) with their opposite. It allows us only write our CSS a single time and make minor tweaks using RTLCSS [control](https://rtlcss.com/learn/usage-guide/control-directives/) and [value](https://rtlcss.com/learn/usage-guide/value-directives/) directives.
5454

5555
## Local documentation
5656

‎site/content/docs/5.2/getting-started/parcel.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ At this point, everything is in the right place, but Parcel needs an HTML page a
6666

6767
With dependencies installed and our project folder ready for us to start coding, we can now configure Parcel and run our project locally. Parcel itself requires no configuration file by design, but we do need an npm script and an HTML file to start our server.
6868

69-
1. **Fill in the `src/index.html` file.** Parcel needs a page to render, so we use our `index.html` page to setup some basic HTML, including our CSS and JavaScript files.
69+
1. **Fill in the `src/index.html` file.** Parcel needs a page to render, so we use our `index.html` page to set up some basic HTML, including our CSS and JavaScript files.
7070

7171
```html
7272
<!doctype html>
@@ -151,7 +151,7 @@ Importing Bootstrap into Parcel requires two imports, one into our `styles.scss`
151151

152152
<img class="img-fluid" src="/docs/{{< param docs_version >}}/assets/img/guides/parcel-dev-server-bootstrap.png" alt="Parcel dev server running with Bootstrap">
153153

154-
Now you can start adding any Bootstrap components you want to use. Be sure to [checkout the complete Parcel example project](https://github.com/twbs/examples/tree/main/parcel) for how to include additional custom Sass and optimize your build by importing only the parts of Bootstrap's CSS and JS that you need.
154+
Now you can start adding any Bootstrap components you want to use. Be sure to [check out the complete Parcel example project](https://github.com/twbs/examples/tree/main/parcel) for how to include additional custom Sass and optimize your build by importing only the parts of Bootstrap's CSS and JS that you need.
155155

156156
{{< markdown >}}
157157
{{< partial "guide-footer.md" >}}

‎site/content/docs/5.2/getting-started/rtl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ While this approach is understandable, please pay attention to the following:
174174

175175
## The breadcrumb case
176176

177-
The [breadcrumb separator]({{< docsref "/components/breadcrumb" >}}/#changing-the-separator) is the only case requiring its own brand new variable— namely `$breadcrumb-divider-flipped` —defaulting to `$breadcrumb-divider`.
177+
The [breadcrumb separator]({{< docsref "/components/breadcrumb" >}}/#changing-the-separator) is the only case requiring its own brand-new variable— namely `$breadcrumb-divider-flipped` —defaulting to `$breadcrumb-divider`.
178178

179179
## Additional resources
180180

‎site/content/docs/5.2/getting-started/vite.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ In the next and final section to this guide, we’ll import all of Bootstrap’s
190190

191191
<img class="img-fluid" src="/docs/{{< param docs_version >}}/assets/img/guides/vite-dev-server-bootstrap.png" alt="Vite dev server running with Bootstrap">
192192

193-
Now you can start adding any Bootstrap components you want to use. Be sure to [checkout the complete Vite example project](https://github.com/twbs/examples/tree/main/vite) for how to include additional custom Sass and optimize your build by importing only the parts of Bootstrap's CSS and JS that you need.
193+
Now you can start adding any Bootstrap components you want to use. Be sure to [check out the complete Vite example project](https://github.com/twbs/examples/tree/main/vite) for how to include additional custom Sass and optimize your build by importing only the parts of Bootstrap's CSS and JS that you need.
194194

195195
{{< markdown >}}
196196
{{< partial "guide-footer.md" >}}

‎site/content/docs/5.2/getting-started/webpack.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ With dependencies installed and our project folder ready for us to start coding,
136136

137137
<img class="img-fluid" src="/docs/{{< param docs_version >}}/assets/img/guides/webpack-dev-server.png" alt="Webpack dev server running">
138138

139-
In the next and final section to this guide, we'll setup the Webpack loaders and import all of Bootstrap's CSS and JavaScript.
139+
In the next and final section to this guide, we'll set up the Webpack loaders and import all of Bootstrap's CSS and JavaScript.
140140

141141
## Import Bootstrap
142142

@@ -227,7 +227,7 @@ Importing Bootstrap into Webpack requires the loaders we installed in the first
227227

228228
<img class="img-fluid" src="/docs/{{< param docs_version >}}/assets/img/guides/webpack-dev-server-bootstrap.png" alt="Webpack dev server running with Bootstrap">
229229

230-
Now you can start adding any Bootstrap components you want to use. Be sure to [checkout the complete Webpack example project](https://github.com/twbs/examples/tree/main/webpack) for how to include additional custom Sass and optimize your build by importing only the parts of Bootstrap's CSS and JS that you need.
230+
Now you can start adding any Bootstrap components you want to use. Be sure to [check out the complete Webpack example project](https://github.com/twbs/examples/tree/main/webpack) for how to include additional custom Sass and optimize your build by importing only the parts of Bootstrap's CSS and JS that you need.
231231

232232
{{< markdown >}}
233233
{{< partial "guide-footer.md" >}}

‎site/content/docs/5.2/layout/columns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ With the move to flexbox in v4, you can use margin utilities like `.me-auto` to
285285

286286
## Standalone column classes
287287

288-
The `.col-*` classes can also be used outside a `.row` to give an element a specific width. Whenever column classes are used as non direct children of a row, the paddings are omitted.
288+
The `.col-*` classes can also be used outside a `.row` to give an element a specific width. Whenever column classes are used as non-direct children of a row, the paddings are omitted.
289289

290290
{{< example >}}
291291
<div class="col-3 bg-light p-3 border">

‎site/content/docs/5.2/layout/grid.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Be aware of the limitations and [bugs around flexbox](https://github.com/philipw
5252

5353
## Grid options
5454

55-
Bootstrap's grid system can adapt across all six default breakpoints, and any breakpoints you customize. The six default grid tiers are as follow:
55+
Bootstrap's grid system can adapt across all six default breakpoints, and any breakpoints you customize. The six default grid tiers are as follows:
5656

5757
- Extra small (xs)
5858
- Small (sm)
@@ -525,4 +525,4 @@ $container-max-widths: (
525525
);
526526
```
527527

528-
When making any changes to the Sass variables or maps, you'll need to save your changes and recompile. Doing so will output a brand new set of predefined grid classes for column widths, offsets, and ordering. Responsive visibility utilities will also be updated to use the custom breakpoints. Make sure to set grid values in `px` (not `rem`, `em`, or `%`).
528+
When making any changes to the Sass variables or maps, you'll need to save your changes and recompile. Doing so will output a brand-new set of predefined grid classes for column widths, offsets, and ordering. Responsive visibility utilities will also be updated to use the custom breakpoints. Make sure to set grid values in `px` (not `rem`, `em`, or `%`).

‎site/layouts/shortcodes/example.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* lang: language used to display the code - default: "html"
88
* show_markup: if the markup should be output in the HTML - default: `true`
99
* show_preview: if the preview should be output in the HTML - default: `true`
10-
* stackblitz_add_js: if extra JS snippet shoud le added to StackBlitz - default: `false`
10+
* stackblitz_add_js: if extra JS snippet should be added to StackBlitz - default: `false`
1111
*/ -}}
1212

1313
{{- $id := .Get "id" -}}

0 commit comments

Comments
 (0)
Please sign in to comment.