Chromium Code Reviews| Index: chrome/tools/convert_dict/convert_dict.cc |
| diff --git a/chrome/tools/convert_dict/convert_dict.cc b/chrome/tools/convert_dict/convert_dict.cc |
| index 6b4ab1716aa5399f483a13eb87a92ddbc9abba9c..cbf4455f602c16d8b7c24123a556148378c5a656 100644 |
| --- a/chrome/tools/convert_dict/convert_dict.cc |
| +++ b/chrome/tools/convert_dict/convert_dict.cc |
| @@ -76,8 +76,8 @@ bool VerifyWords(const convert_dict::DicReader::WordList& org_words, |
| int PrintHelp() { |
| printf("Usage: convert_dict <dicfile base name>\n\n"); |
| printf("Example:\n"); |
| - printf(" convert_dict en-US\nwill read en-US.dic / en-US.aff and\n"); |
| - printf("generate en-US.bdic\n\n"); |
| + printf(" $ convert_dict en-US\nwill read en-US.dic, en-US.dic_delta, and " |
|
brettw
2011/01/20 23:49:58
The addition of $ is confusing here since I normal
|
| + "en-US.aff and generate en-US.bdic\n\n"); |
| return 1; |
| } |
| @@ -107,6 +107,7 @@ int main(int argc, char* argv[]) { |
| FilePath dic_path = file_base.ReplaceExtension(FILE_PATH_LITERAL(".dic")); |
| printf("Reading %" PRFilePath " ...\n", dic_path.value().c_str()); |
| + // DicReader will also read the .dic_delta file. |
| convert_dict::DicReader dic_reader(dic_path); |
| if (!dic_reader.Read(&aff_reader)) { |
| printf("Unable to read the dic file.\n"); |