Skip to content

Commit 318fe2b

Browse files
committed
Rename variable
1 parent 57113a8 commit 318fe2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/ex_css_modules/view.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defmodule ExCSSModules.View do
2121
defmacro __using__(opts \\ []) do
2222
{filename, [file: relative_to]} = Code.eval_quoted(opts[:stylesheet], file: __CALLER__.file)
2323

24-
embed =
24+
embed_stylesheet? =
2525
Keyword.get(
2626
opts,
2727
:embed_stylesheet,
@@ -32,7 +32,7 @@ defmodule ExCSSModules.View do
3232

3333
quote do
3434
@stylesheet unquote(
35-
if embed do
35+
if embed_stylesheet? do
3636
Macro.escape(ExCSSModules.stylesheet(filename))
3737
else
3838
Macro.escape(filename)

0 commit comments

Comments
 (0)