Skip to content

Commit 752d647

Browse files
committed
Standardise on 3rd person singular for both verbs in the sentence
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1744408 13f79535-47bb-0310-9956-ffa450edef68
1 parent 7e19596 commit 752d647

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/codec/digest/DigestUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class DigestUtils {
4444
private static final int STREAM_BUFFER_LENGTH = 1024;
4545

4646
/**
47-
* Read through a byte array and returns the digest for the data. Provided for symmetry with other methods.
47+
* Reads through a byte array and returns the digest for the data. Provided for symmetry with other methods.
4848
*
4949
* @param messageDigest
5050
* The MessageDigest to use (e.g. MD5)
@@ -60,7 +60,7 @@ public static byte[] digest(final MessageDigest messageDigest, final byte[] data
6060
}
6161

6262
/**
63-
* Read through an ByteBuffer and returns the digest for the data
63+
* Reads through a ByteBuffer and returns the digest for the data
6464
*
6565
* @param messageDigest
6666
* The MessageDigest to use (e.g. MD5)
@@ -77,7 +77,7 @@ public static byte[] digest(final MessageDigest messageDigest, final ByteBuffer
7777
}
7878

7979
/**
80-
* Read through a File and returns the digest for the data
80+
* Reads through a File and returns the digest for the data
8181
*
8282
* @param messageDigest
8383
* The MessageDigest to use (e.g. MD5)
@@ -93,7 +93,7 @@ public static byte[] digest(final MessageDigest messageDigest, final File data)
9393
}
9494

9595
/**
96-
* Read through an InputStream and returns the digest for the data
96+
* Reads through an InputStream and returns the digest for the data
9797
*
9898
* @param messageDigest
9999
* The MessageDigest to use (e.g. MD5)

0 commit comments

Comments
 (0)