Skip to content

Commit

Permalink
Fixes typo in meta.module-functions example (sass#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
Teihden committed Jan 4, 2023
1 parent 61ac2c1 commit d79cec4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/documentation/modules/meta.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 %>
Expand Down

0 comments on commit d79cec4

Please sign in to comment.