소스 검색

MAPREDUCE-6999. Fix typo onf in DynamicInputChunk.java. Contributed by fang zhenyi.

(cherry picked from commit cc3f3eca409f5e57e540849a80e6448bb4924cc6)
Akira Ajisaka 7 년 전
부모
커밋
2ba71afcd5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/mapred/lib/DynamicInputChunk.java

+ 1 - 1
hadoop-tools/hadoop-distcp/src/main/java/org/apache/hadoop/tools/mapred/lib/DynamicInputChunk.java

@@ -68,7 +68,7 @@ class DynamicInputChunk<K, V> {
    * Method to write records into a chunk.
    * @param key Key from the listing file.
    * @param value Corresponding value from the listing file.
-   * @throws IOException Exception onf failure to write to the file.
+   * @throws IOException Exception on failure to write to the file.
    */
   public void write(Text key, CopyListingFileStatus value) throws IOException {
     writer.append(key, value);