From aba384b00c67189e656a86a7e49ea73e7305d55c Mon Sep 17 00:00:00 2001 From: Alexander Doroshko Date: Tue, 10 Dec 2019 16:29:32 +0300 Subject: [PATCH] Typos fixed on the modules/selector page: selector.unify() -> selector-unify(), compound-selectors() -> simple-selectors() --- source/documentation/modules/selector.html.md.erb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/source/documentation/modules/selector.html.md.erb b/source/documentation/modules/selector.html.md.erb index 931958445..e999860cf 100644 --- a/source/documentation/modules/selector.html.md.erb +++ b/source/documentation/modules/selector.html.md.erb @@ -211,7 +211,7 @@ also just be normal strings (quoted or unquoted), or a combination. For example, <% function 'selector.unify($selector1, $selector2)', - 'selector.unify($selector1, $selector2)', + 'selector-unify($selector1, $selector2)', returns: 'selector | null' do %> Returns a selector that matches only elements matched by *both* `$selector1` and `$selector2`. @@ -251,10 +251,10 @@ also just be normal strings (quoted or unquoted), or a combination. For example, strings. <% example(autogen_css: false) do %> - @debug selector.compound-selectors("a.disabled"); // a, .disabled - @debug selector.compound-selectors("main.blog:after"); // main, .blog, :after + @debug selector.simple-selectors("a.disabled"); // a, .disabled + @debug selector.simple-selectors("main.blog:after"); // main, .blog, :after === - @debug selector.compound-selectors("a.disabled") // a, .disabled - @debug selector.compound-selectors("main.blog:after") // main, .blog, :after + @debug selector.simple-selectors("a.disabled") // a, .disabled + @debug selector.simple-selectors("main.blog:after") // main, .blog, :after <% end %> <% end %>