We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 66f4e68 + e575534 commit 6d5b6b2Copy full SHA for 6d5b6b2
src/prelexer.cpp
@@ -72,7 +72,7 @@ namespace Sass {
72
exactly<'\\'>,
73
alternatives <
74
minmax_range<
75
- 3, 3, xdigit
+ 1, 3, xdigit
76
>,
77
any_char
78
@@ -1027,7 +1027,7 @@ namespace Sass {
1027
++ pos; ++ got;
1028
}
1029
if (got < min) return 0;
1030
- if (got > min) return 0;
+ if (got > max) return 0;
1031
return pos;
1032
1033
0 commit comments