Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: spelling and grammar corrections #11249

Merged
merged 1 commit into from
May 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scss/util/_breakpoint.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion scss/util/_direction.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions scss/util/_unit.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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);
}
Expand Down