From 3c18a2c83183abd43ce917b7cc6b720abccaa813 Mon Sep 17 00:00:00 2001 From: Matthew Slowe Date: Sun, 8 Oct 2017 21:53:08 +0100 Subject: [PATCH] Fix spelling error --- war/build.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")) {