This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 1.x
in repository https://gitbox.apache.org/repos/asf/commons-fileupload.git

commit abe5d94b7ef6ff7164b48b5bb3781979ebbafb0e
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue Jun 3 12:37:20 2025 +0100

    Fix typos
---
 src/main/java/org/apache/commons/fileupload/MultipartStream.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/fileupload/MultipartStream.java 
b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
index 839efaac..e551eedf 100644
--- a/src/main/java/org/apache/commons/fileupload/MultipartStream.java
+++ b/src/main/java/org/apache/commons/fileupload/MultipartStream.java
@@ -496,13 +496,13 @@ public class MultipartStream {
     protected static final byte[] HEADER_SEPARATOR = {CR, LF, CR, LF};
 
     /**
-     * A byte sequence that that follows a delimiter that will be
+     * A byte sequence that follows a delimiter that will be
      * followed by an encapsulation ({@code CRLF}).
      */
     protected static final byte[] FIELD_SEPARATOR = {CR, LF};
 
     /**
-     * A byte sequence that that follows a delimiter of the last
+     * A byte sequence that follows a delimiter of the last
      * encapsulation in the stream ({@code --}).
      */
     protected static final byte[] STREAM_TERMINATOR = {DASH, DASH};

Reply via email to