diff --git a/client/homebrew/brewRenderer/errorBar/errorBar.jsx b/client/homebrew/brewRenderer/errorBar/errorBar.jsx
index d5447e71d..63daf5b4d 100644
--- a/client/homebrew/brewRenderer/errorBar/errorBar.jsx
+++ b/client/homebrew/brewRenderer/errorBar/errorBar.jsx
@@ -36,13 +36,13 @@ const ErrorBar = createClass({
const msg = [];
if(this.hasOpenError){
msg.push(
- An unmatched opening tag means there's an opened tag that isn't closed, you need to close a tag, like this {'
'}. 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 {''}. Make sure to match types!
);
}
if(this.hasCloseError){
msg.push(
- 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.
);
}