0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-06 01:22:44 +00:00

minor grammar fixes in error messages

This commit is contained in:
Eric Scheid
2018-12-24 15:56:25 +11:00
committed by Trevor Buckner
parent 462a5608d2
commit aeffec1763

View File

@@ -36,13 +36,13 @@ const ErrorBar = createClass({
const msg = []; const msg = [];
if(this.hasOpenError){ if(this.hasOpenError){
msg.push(<div> msg.push(<div>
An unmatched opening tag means there's an opened tag that isn't closed, you need to close a tag, like this {'</div>'}. Make sure to match types! An unmatched opening tag means there's an opened tag that isn't closed. You need to close your tags, like this {'</div>'}. Make sure to match types!
</div>); </div>);
} }
if(this.hasCloseError){ if(this.hasCloseError){
msg.push(<div> msg.push(<div>
An unmatched closing tag means you closed a tag without opening it. Either remove it, you check to where you think you opened it. An unmatched closing tag means you closed a tag without opening it. Either remove it, or check to where you think you opened it.
</div>); </div>);
} }