From 62fa63b67a2cb7b51cf46051c0c60180dbbe063b Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Fri, 4 Jan 2019 15:04:18 -0500 Subject: [PATCH] Fix some typos --- helpers/sass_helpers.rb | 4 ++-- source/documentation/interpolation.html.md.erb | 4 ++-- source/documentation/syntax.html.md | 2 +- source/documentation/variables.html.md.erb | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/helpers/sass_helpers.rb b/helpers/sass_helpers.rb index ffc8fe0..4732122 100644 --- a/helpers/sass_helpers.rb +++ b/helpers/sass_helpers.rb @@ -335,8 +335,8 @@ module SassHelpers end content_tag :tr, [ - content_tag(:th, name, class: 'name'), - content_tag(:th, status_text, class: 'status'), + content_tag(:td, name, class: 'name'), + content_tag(:td, status_text, class: 'status'), ], class: status ? 'supported' : 'unsupported' end diff --git a/source/documentation/interpolation.html.md.erb b/source/documentation/interpolation.html.md.erb index 354583c..85b0bda 100644 --- a/source/documentation/interpolation.html.md.erb +++ b/source/documentation/interpolation.html.md.erb @@ -106,8 +106,8 @@ interpolation in SassScript always returns an unquoted string. <% fun_fact do %> Interpolation is useful for injecting values into strings, but other than that it's rarely necessary in SassScript expressions. You definitely *don't* need - it to just use a variable in a property value. Instead of writing `color: - #{$accent}`, you can just write `color: $accent`! + it to just use a variable in a property value. Instead of writing + `color: #{$accent}`, you can just write `color: $accent`! <% end %> <% heads_up do %> diff --git a/source/documentation/syntax.html.md b/source/documentation/syntax.html.md index e8ecc1b..2e686ad 100644 --- a/source/documentation/syntax.html.md +++ b/source/documentation/syntax.html.md @@ -2,7 +2,7 @@ title: Syntax introduction: > Sass supports two different syntaxes. Each one can import the other, so it's - up to your and your team which one to choose. + up to you and your team which one to choose. --- ## SCSS diff --git a/source/documentation/variables.html.md.erb b/source/documentation/variables.html.md.erb index a4f4767..2661f83 100644 --- a/source/documentation/variables.html.md.erb +++ b/source/documentation/variables.html.md.erb @@ -33,7 +33,7 @@ variable, just include it in a value. <% heads_up do %> CSS has [variables of its own][], which are totally different than Sass - Lvariables. Know the differences! + variables. Know the differences! [variables of its own]: ../style-rules/declarations#custom-properties