Skip to content

Commit

Permalink
Merge pull request #781 from BeckyDTP/patch-1
Browse files Browse the repository at this point in the history
Missing space in error message
  • Loading branch information
kevinhendricks authored Nov 7, 2024
2 parents c809a0a + c814ab0 commit b6e3eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Parsers/qCSSParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ void CSSParser::parseInProperty(QString& css_input, int& i, parse_status& astatu
}
else
{
log("Unexpected character '" + QString(1, css_input[i]) + "'in property name", Error);
log("Unexpected character '" + QString(1, css_input[i]) + "' in property name", Error);
}
}
else if(!CSSUtils::ctype_space(css_input[i]))
Expand Down

0 comments on commit b6e3eba

Please sign in to comment.