Codespell spelling fixes

These spelling errors were found using
https://github.com/codespell-project/codespell

Change-Id: I8ec1e482a6eedca0f9c3b0282fa7db85cd4243f3
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/docs/themes/customize.md b/docs/themes/customize.md
index 6eb233c..1af2122 100644
--- a/docs/themes/customize.md
+++ b/docs/themes/customize.md
@@ -18,7 +18,7 @@
 - [View all the Bootstrap Sass Options](https://getbootstrap.com/docs/4.2/getting-started/theming/#sass-options)
 
 ## Bootstrap Sass Variables
-These are global variables that Bootsrap defines in the `/node_modules/bootstrap/scss/variables.scss` helper file. Adding a variable listed in this file to the `/src/assets/styles/bmc/helpers/_variables.scss` file will override the Bootstrap defined value.
+These are global variables that Bootstrap defines in the `/node_modules/bootstrap/scss/variables.scss` helper file. Adding a variable listed in this file to the `/src/assets/styles/bmc/helpers/_variables.scss` file will override the Bootstrap defined value.
 
 ### $transition-base
 This variable sets the base CSS transition style throughout the application.
diff --git a/docs/themes/readme.md b/docs/themes/readme.md
index 34f422c..5e23877 100644
--- a/docs/themes/readme.md
+++ b/docs/themes/readme.md
@@ -1,9 +1,9 @@
 
 # Overview
 
-The best way to change the overall look and feel of the OpenBMC Web UI is to update the following files in a downstream repository. This section discusses the structure and purpose of the theme files and how to customize the application using Boostrap theming.
+The best way to change the overall look and feel of the OpenBMC Web UI is to update the following files in a downstream repository. This section discusses the structure and purpose of the theme files and how to customize the application using Bootstrap theming.
 
-[Read more about Boostrap Theming](https://getbootstrap.com/docs/4.0/getting-started/theming)
+[Read more about Bootstrap Theming](https://getbootstrap.com/docs/4.0/getting-started/theming)
 
 
 ## SCSS File Structure
@@ -130,8 +130,8 @@
 ```
 
 ##### Color Resources
-- [Learn more about Boostrap colors](https://getbootstrap.com/docs/4.0/getting-started/theming/#color)
-- [Leran more about Bootstrap variables](https://getbootstrap.com/docs/4.0/getting-started/theming/#css-variables)
+- [Learn more about Bootstrap colors](https://getbootstrap.com/docs/4.0/getting-started/theming/#color)
+- [Learn more about Bootstrap variables](https://getbootstrap.com/docs/4.0/getting-started/theming/#css-variables)
 - [View the color palette and hex values in the color guidelines](/guide/guidelines/colors)
 
 #### _motion.scss
@@ -218,7 +218,7 @@
 ### _obmc-custom.scss
 The `obmc-custom.scss` file defines all of the presentational layer dependencies.
 
-- [Read more about Boostrap options](https://getbootstrap.com/docs/4.0/getting-started/theming/#sass-options)
+- [Read more about Bootstrap options](https://getbootstrap.com/docs/4.0/getting-started/theming/#sass-options)
 - [Read more about Importing](https://getbootstrap.com/docs/4.0/getting-started/theming/#importing)
 
 ## Component / View Styles
diff --git a/src/assets/styles/_obmc-custom.scss b/src/assets/styles/_obmc-custom.scss
index 63bed23..ae4fcb9 100644
--- a/src/assets/styles/_obmc-custom.scss
+++ b/src/assets/styles/_obmc-custom.scss
@@ -1,12 +1,12 @@
-// BMC Helpers must be imported before Boostrap helpers to
+// BMC Helpers must be imported before Bootstrap helpers to
 // take advantage of Bootstrap's use of the Sass !default
-// statement. Moving this helper after results in Boostrap
+// statement. Moving this helper after results in Bootstrap
 // variables taking precedence over BMC's
 @import "./bmc/helpers";
 @import "./vendor/bootstrap/helpers";
 
-// BMC Base files must folow Bootstrap base files
-// to assure BMC base styles override Boostrap base files
+// BMC Base files must follow Bootstrap base files
+// to assure BMC base styles override Bootstrap base files
 @import "./vendor/bootstrap/base";
 @import "./bmc/base";