From 1f0f9a6ed8486ed5838c4f910a5942357e3e532e Mon Sep 17 00:00:00 2001 From: David Niciforovic Date: Fri, 11 May 2018 08:21:13 -0400 Subject: [PATCH] docs: spelling and grammar corrections --- scss/util/_breakpoint.scss | 2 +- scss/util/_direction.scss | 2 +- scss/util/_unit.scss | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scss/util/_breakpoint.scss b/scss/util/_breakpoint.scss index 6bf37f1bce..5def6f1db6 100644 --- a/scss/util/_breakpoint.scss +++ b/scss/util/_breakpoint.scss @@ -254,7 +254,7 @@ $breakpoint-classes: (small medium large) !default; /// responsive gutters for the grid. /// @access private /// -/// @param {String} $breakpoing - a named or non-named breakpoing. +/// @param {String} $breakpoint - a named or non-named breakpoint. /// /// @returns {Array} The list of breakpoints up to and. If $key is auto, returns breakpoints above the zero @function -zf-closest-named-breakpoint($breakpoint) { diff --git a/scss/util/_direction.scss b/scss/util/_direction.scss index 98a868aa0d..7874ec426c 100644 --- a/scss/util/_direction.scss +++ b/scss/util/_direction.scss @@ -21,7 +21,7 @@ @return null; } - // Calcul the opposite place in a circle, with a starting index of 1 + // Calculate the opposite place in a circle, with a starting index of 1 $length: length($dirs); $demi: $length / 2; $opposite-place: (($place + $demi - 1) % $length) + 1; diff --git a/scss/util/_unit.scss b/scss/util/_unit.scss index a4bddb8350..9496226e14 100644 --- a/scss/util/_unit.scss +++ b/scss/util/_unit.scss @@ -125,7 +125,7 @@ $global-font-size: 100% !default; $base: strip-unit($base) * 16px; } - // Now lets convert our value to pixels too + // Now let's convert our value to pixels too @if unit($value) == '%' { $value: ($value / 100%) * $base; } @@ -143,7 +143,7 @@ $global-font-size: 100% !default; @return strip-unit($value) / strip-unit($base); } - // assume that line-heights greatern then 10 are meant to be absolute in 'px' + // assume that line-heights greater than 10 are meant to be absolute in 'px' @if unitless($value) and ($value > 10) { @return $value / strip-unit($base); }