Skip to content

Commit

Permalink
Fix error message in record_reader (tensorflow#16808)
Browse files Browse the repository at this point in the history
  • Loading branch information
gweidner authored and jhseu committed Feb 8, 2018
1 parent 5dbd3d7 commit 169337f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/core/lib/io/record_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ RecordReaderOptions RecordReaderOptions::CreateRecordReaderOptions(
#endif // IS_SLIM_BUILD
} else if (compression_type != compression::kNone) {
LOG(ERROR) << "Unsupported compression_type:" << compression_type
<< ". No comprression will be used.";
<< ". No compression will be used.";
}
return options;
}
Expand Down

0 comments on commit 169337f

Please sign in to comment.