Fixes typo in meta.module-functions example (#690)

This commit is contained in:
Denis Teikhrib 2023-01-05 03:33:45 +05:00 committed by GitHub
parent 3219128ff9
commit 4246de7258
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 %>