HADOOP-10782. Fix typo in DataChecksum class. Contributed by Jingguo Yao.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1608539 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Suresh Srinivas 2014-07-07 18:10:42 +00:00
parent 93c1bc8114
commit 55e7ddf514
2 changed files with 3 additions and 1 deletions

View File

@ -523,6 +523,8 @@ Release 2.5.0 - UNRELEASED
HADOOP-10312 Shell.ExitCodeException to have more useful toString (stevel)
HADOOP-10782. Fix typo in DataChecksum class. (Jingguo Yao via suresh)
OPTIMIZATIONS
BUG FIXES

View File

@ -30,7 +30,7 @@ import org.apache.hadoop.classification.InterfaceStability;
import org.apache.hadoop.fs.ChecksumException;
/**
* This class provides inteface and utilities for processing checksums for
* This class provides interface and utilities for processing checksums for
* DFS data transfers.
*/
@InterfaceAudience.LimitedPrivate({"HDFS", "MapReduce"})