From aeffec1763960ca544b2b9525156641514fad83d Mon Sep 17 00:00:00 2001 From: Eric Scheid Date: Mon, 24 Dec 2018 15:56:25 +1100 Subject: [PATCH] minor grammar fixes in error messages --- client/homebrew/brewRenderer/errorBar/errorBar.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.
); }