diff --git a/war/build.jsp b/war/build.jsp index e8604f9..ef05263 100755 --- a/war/build.jsp +++ b/war/build.jsp @@ -17,7 +17,7 @@ String name = StringEscapeUtils.escapeHtml(request.getParameter("name")); if (request.getParameter("words").length() > 2048) { throw new Exception("Input too large"); } - if (height > 100 || width > 100) { throw new Exception("Dimentions too large"); } + if (height > 100 || width > 100) { throw new Exception("Dimensions too large"); } List words = new ArrayList(); for ( String line : request.getParameter("words").split("\r\n")) {