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

This commit is contained in:
Akira Ajisaka 2017-11-02 18:32:24 +09:00
parent cde56b9cef
commit cc3f3eca40
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
1 changed files with 1 additions and 1 deletions

View File

@ -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);