martinc 2004/07/24 21:47:18
Modified: fileupload/src/java/org/apache/commons/fileupload
MultipartStream.java
Log:
Fix typos in comments.
Submitted By: Yuji Yamano
Revision Changes Path
1.15 +3 -3
jakarta-commons/fileupload/src/java/org/apache/commons/fileupload/MultipartStream.java
Index: MultipartStream.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/fileupload/src/java/org/apache/commons/fileupload/MultipartStream.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- MultipartStream.java 25 Feb 2004 21:07:12 -0000 1.14
+++ MultipartStream.java 25 Jul 2004 04:47:17 -0000 1.15
@@ -517,7 +517,7 @@
// Write out the data belonging to the body-data.
output.write(buffer, head, tail - head - pad);
- // Move the data to the beging of the buffer.
+ // Move the data to the beginning of the buffer.
total += tail - head - pad;
System.arraycopy(buffer, tail - pad, buffer, 0, pad);
@@ -594,7 +594,7 @@
}
total += tail - head - pad;
- // Move the data to the beging of the buffer.
+ // Move the data to the beginning of the buffer.
System.arraycopy(buffer, tail - pad, buffer, 0, pad);
// Refill buffer with new data.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]