From d79cec444169b61b3933f17b20d078c6b5dd7807 Mon Sep 17 00:00:00 2001 From: Denis Teikhrib <115897199+Teihden@users.noreply.github.com> Date: Thu, 5 Jan 2023 03:33:45 +0500 Subject: [PATCH] Fixes typo in meta.module-functions example (#690) --- source/documentation/modules/meta.html.md.erb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/documentation/modules/meta.html.md.erb b/source/documentation/modules/meta.html.md.erb index 0c746496d..eb06e3959 100644 --- a/source/documentation/modules/meta.html.md.erb +++ b/source/documentation/modules/meta.html.md.erb @@ -431,7 +431,7 @@ title: sass:meta @debug meta.module-functions("functions"); // ("pow": get-function("pow")) - @debug meta.call(map.get(meta.module-variables("functions"), "pow"), 3, 4); // 16 + @debug meta.call(map.get(meta.module-functions("functions"), "pow"), 3, 4); // 81 === // _functions.sass @function pow($base, $exponent) @@ -448,7 +448,7 @@ title: sass:meta @debug meta.module-functions("functions") // ("pow": get-function("pow")) - @debug meta.call(map.get(meta.module-variables("functions"), "pow"), 3, 4) // 16 + @debug meta.call(map.get(meta.module-functions("functions"), "pow"), 3, 4) // 81 <% end %> <% end %>