Skip to content

Commit 997c86d

Browse files
committed
Merge pull request #1558 from saper/err_invalid_null
invalid null operation -> Invalid null operation
2 parents 61ac61a + 9ca4b16 commit 997c86d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/eval.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,8 +1324,8 @@ namespace Sass {
13241324
case Sass_OP::DIV: sep = "/"; break;
13251325
default: break;
13261326
}
1327-
if (ltype == Expression::NULL_VAL) error("invalid null operation: \"null plus "+quote(unquote(rstr), '"')+"\".", lhs.pstate());
1328-
if (rtype == Expression::NULL_VAL) error("invalid null operation: \""+quote(unquote(lstr), '"')+" plus null\".", rhs.pstate());
1327+
if (ltype == Expression::NULL_VAL) error("Invalid null operation: \"null plus "+quote(unquote(rstr), '"')+"\".", lhs.pstate());
1328+
if (rtype == Expression::NULL_VAL) error("Invalid null operation: \""+quote(unquote(lstr), '"')+" plus null\".", rhs.pstate());
13291329

13301330
if ( (ltype == Expression::STRING || sep == "") &&
13311331
(sep != "/" || !rqstr || !rqstr->quote_mark())

0 commit comments

Comments
 (0)