Skip to content
This repository was archived by the owner on Aug 19, 2019. It is now read-only.

Commit 94074f2

Browse files
author
deepsweet
committed
💄
1 parent 6b7b3a4 commit 94074f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ module.exports = postcss.plugin('rebem-css', function() {
1414
// :elem(elem) → __elem
1515
.replace(/:elem\(([\w-]+)\)/g, elemDelim + '$1')
1616
// :mod(mod) → _mod
17-
// :mod(mod val) → _mod_val
17+
// :mod(mod val) → _mod_val
1818
.replace(/:mod\(([\w-]+)\s?([\w-]+)?\)/g, function(match, mod, val) {
1919
if (val) {
2020
return modDelim + mod + modDelim + val;

0 commit comments

Comments
 (0)