Change JavaDoc so that sentences start with upper case letters

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/fileupload/trunk@1456911 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
index d16212f..1518f0d 100644
--- a/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
+++ b/src/main/java/org/apache/commons/fileupload/util/mime/QuotedPrintableDecoder.java
@@ -25,7 +25,7 @@
 final class QuotedPrintableDecoder {
 
     /**
-     * set up the encoding table.
+     * Set up the encoding table.
      */
     private static final byte[] ENCODING_TABLE = {
         (byte) '0', (byte) '1', (byte) '2', (byte) '3', (byte) '4', (byte) '5', (byte) '6', (byte) '7',
@@ -38,12 +38,12 @@
     private static final int OUT_SHIFT = 4;
 
     /**
-     * the decoding table size.
+     * The decoding table size.
      */
     private static final int DECODING_TABLE_SIZE = 128;
 
     /**
-     * set up the decoding table.
+     * Set up the decoding table.
      */
     private static final byte[] DECODING_TABLE = new byte[DECODING_TABLE_SIZE];
 
@@ -62,7 +62,7 @@
     }
 
     /**
-     * decode the uuencoded byte data writing it to the given output stream.
+     * Decode the uuencoded byte data writing it to the given output stream.
      *
      * @param data   The array of byte data to decode.
      * @param off    Starting offset within the array.