]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
docs: spelling and grammar corrections 11249/head
authorDavid Niciforovic <david.r.niciforovic@gmail.com>
Fri, 11 May 2018 12:21:13 +0000 (08:21 -0400)
committerDavid Niciforovic <david.r.niciforovic@gmail.com>
Fri, 11 May 2018 12:21:13 +0000 (08:21 -0400)
scss/util/_breakpoint.scss
scss/util/_direction.scss
scss/util/_unit.scss

index 6bf37f1bced9f5cc29e5c1f9e12d1b9c620c5593..5def6f1db6528744b27df6bdb911ba97cc1d9ee0 100644 (file)
@@ -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) {
index 98a868aa0d295678c61b02830ae10284a2dce4e9..7874ec426c4e19727bb30f6effdcf36377102b86 100644 (file)
@@ -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;
index a4bddb835065140ad142908d3fdfe4174a0735f6..9496226e14eab90c04825550261f4d078655ef03 100644 (file)
@@ -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);
   }