[WICKET-7033] add comments to code (amendment)
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/upload/resource/AbstractFileUploadResource.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/upload/resource/AbstractFileUploadResource.java
index f931f95..2198ccb 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/upload/resource/AbstractFileUploadResource.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/upload/resource/AbstractFileUploadResource.java
@@ -143,8 +143,8 @@
 		catch (FileUploadException fux)
 		{
 			resourceResponse.setContentType("application/json");
-			// even when this exceptional situation we want the request to be successful
-			// as we are just sending back to client some JSON with error messages
+			// even when this is an exceptional situation we want the request to be successful
+			// as we are just sending back to the client some JSON with error messages,
 			// which will in turn be sent to wicket component (who will handle the errors)
 			resourceResponse.setStatusCode(HttpServletResponse.SC_OK);
 			JSONObject json = new JSONObject();