WW-5371 Addresses a typo and rephrases it
diff --git a/source/core-developers/file-upload.md b/source/core-developers/file-upload.md
index 6000131..d360311 100644
--- a/source/core-developers/file-upload.md
+++ b/source/core-developers/file-upload.md
@@ -29,8 +29,9 @@
 ## Basic Usage
 
 The `org.apache.struts2.interceptor.FileUploadInterceptor` and `org.apache.struts2.interceptor.ActionFileUploadInterceptor`
-classes is included as part of the `defaultStack`. As long as  the required libraries are added to your project you will be able 
-to take advantage of the Struts 2 file upload capability. Configure an Action mapping for your Action class as you typically would.
+interceptors are included as part of the `defaultStack` and named appropriately: `fileUpload` and `actionFileUpload`. 
+As long as the required libraries are added to your project you will be able to take advantage of the Struts 2 file upload 
+capability. Configure an Action mapping for your Action class as you typically would.
 
 ### Example action mapping:
 
@@ -68,7 +69,7 @@
 
     @Override
     public void withUploadedFiles(List<UploadedFile> uploadedFiles) {
-        if (!uploadedFiles.isEmpty() > 0) {
+        if (!uploadedFiles.isEmpty()) {
           this.uploadedFile = uploadedFiles.get(0);
           this.fileName = uploadedFile.getName();
           this.contentType = uploadedFile.getContentType();