aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew <[email protected]>2018-07-09 19:59:22 -0500
committerMark Otto <[email protected]>2018-07-09 17:59:22 -0700
commitabb48686267db3dadaa390e62538d23216c046d3 (patch)
tree50adf23a0c85ff490d1ca2e8328fde62ce5e8b3c
parent8b50a72f3c025e7a5d3472998206b681ff06c896 (diff)
downloadbootstrap-abb48686267db3dadaa390e62538d23216c046d3.tar.xz
bootstrap-abb48686267db3dadaa390e62538d23216c046d3.zip
correct spelling errors (#26837)
-rw-r--r--scss/_functions.scss2
-rw-r--r--scss/_navbar.scss4
-rw-r--r--scss/mixins/_breakpoints.scss2
-rw-r--r--scss/mixins/_hover.scss2
4 files changed, 5 insertions, 5 deletions
diff --git a/scss/_functions.scss b/scss/_functions.scss
index b44d7d998..bf8be9aee 100644
--- a/scss/_functions.scss
+++ b/scss/_functions.scss
@@ -1,6 +1,6 @@
// Bootstrap functions
//
-// Utility mixins and functions for evalutating source code across our variables, maps, and mixins.
+// Utility mixins and functions for evaluating source code across our variables, maps, and mixins.
// Ascending
// Used to evaluate Sass maps like our grid breakpoints.
diff --git a/scss/_navbar.scss b/scss/_navbar.scss
index 05025273f..52de5050a 100644
--- a/scss/_navbar.scss
+++ b/scss/_navbar.scss
@@ -24,7 +24,7 @@
padding: $navbar-padding-y $navbar-padding-x;
// Because flex properties aren't inherited, we need to redeclare these first
- // few properities so that content nested within behave properly.
+ // few properties so that content nested within behave properly.
> .container,
> .container-fluid {
display: flex;
@@ -94,7 +94,7 @@
// Powered by the collapse Bootstrap JavaScript plugin.
// When collapsed, prevent the toggleable navbar contents from appearing in
-// the default flexbox row orienation. Requires the use of `flex-wrap: wrap`
+// the default flexbox row orientation. Requires the use of `flex-wrap: wrap`
// on the `.navbar` parent.
.navbar-collapse {
flex-basis: 100%;
diff --git a/scss/mixins/_breakpoints.scss b/scss/mixins/_breakpoints.scss
index d1ad684cc..59f25a27e 100644
--- a/scss/mixins/_breakpoints.scss
+++ b/scss/mixins/_breakpoints.scss
@@ -42,7 +42,7 @@
@return if($next, breakpoint-min($next, $breakpoints) - .02px, null);
}
-// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash infront.
+// Returns a blank string if smallest breakpoint, otherwise returns the name with a dash in front.
// Useful for making responsive utilities.
//
// >> breakpoint-infix(xs, (xs: 0, sm: 576px, md: 768px, lg: 992px, xl: 1200px))
diff --git a/scss/mixins/_hover.scss b/scss/mixins/_hover.scss
index c1224ffc5..192f847e1 100644
--- a/scss/mixins/_hover.scss
+++ b/scss/mixins/_hover.scss
@@ -1,6 +1,6 @@
// Hover mixin and `$enable-hover-media-query` are deprecated.
//
-// Origally added during our alphas and maintained during betas, this mixin was
+// Originally added during our alphas and maintained during betas, this mixin was
// designed to prevent `:hover` stickiness on iOS-an issue where hover styles
// would persist after initial touch.
//