Skip to content

Commit 67e19ad

Browse files
committed
Match Javadocs to code.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1744619 13f79535-47bb-0310-9956-ffa450edef68
1 parent f99b8f9 commit 67e19ad

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,8 +1030,8 @@ public String asHex() {
10301030
/**
10311031
* Updates the {@link MessageDigest} in the {@link DigestUtils} instance
10321032
*
1033-
* @param valueToDigest
1034-
* the value to update the {@link MessageDigest} with
1033+
* @param data
1034+
* the data to update the {@link MessageDigest} with
10351035
* @return the updated {@link DigestUtils}
10361036
* @since 1.11
10371037
*/
@@ -1043,8 +1043,8 @@ public DigestUtils update(final byte[] data) throws IOException {
10431043
/**
10441044
* Updates the {@link MessageDigest} in the {@link DigestUtils} instance
10451045
*
1046-
* @param valueToDigest
1047-
* the value to update the {@link MessageDigest} with
1046+
* @param data
1047+
* the data to update the {@link MessageDigest} with
10481048
* @return the updated {@link DigestUtils}
10491049
* @since 1.11
10501050
*/
@@ -1056,8 +1056,8 @@ public DigestUtils update(final ByteBuffer data) throws IOException {
10561056
/**
10571057
* Updates the {@link MessageDigest} in the {@link DigestUtils} instance
10581058
*
1059-
* @param valueToDigest
1060-
* the value to update the {@link MessageDigest} with
1059+
* @param data
1060+
* the data to update the {@link MessageDigest} with
10611061
* @return the updated {@link DigestUtils}
10621062
* @since 1.11
10631063
*/
@@ -1069,8 +1069,8 @@ public DigestUtils update(final String data) throws IOException {
10691069
/**
10701070
* Updates the {@link MessageDigest} in the {@link DigestUtils} instance
10711071
*
1072-
* @param valueToDigest
1073-
* the value to update the {@link MessageDigest} with
1072+
* @param data
1073+
* the data to update the {@link MessageDigest} with
10741074
* @return the updated {@link DigestUtils}
10751075
* @since 1.11
10761076
*/
@@ -1088,8 +1088,8 @@ public DigestUtils update(final InputStream data) throws IOException {
10881088
/**
10891089
* Updates the {@link MessageDigest} in the {@link DigestUtils} instance
10901090
*
1091-
* @param valueToDigest
1092-
* the value to update the {@link MessageDigest} with
1091+
* @param data
1092+
* the data to update the {@link MessageDigest} with
10931093
* @return the updated {@link DigestUtils}
10941094
* @since 1.11
10951095
*/

0 commit comments

Comments
 (0)