Skip to content
This repository was archived by the owner on Mar 9, 2023. It is now read-only.

Commit 6369574

Browse files
committed
fix '-s' help message in 'ubuild' command
1 parent 3a2f344 commit 6369574

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ optional arguments:
296296
-h, --help show this help message and exit
297297
-d string description comment to be embedded on dictionary
298298
-o file output file (default: user.dic)
299-
-s file system dictionary (default: core dic)
299+
-s file system dictionary path (default: system core dictionary path)
300300
```
301301
302302
About the dictionary file format, please refer to [this document](https://github.com/WorksApplications/Sudachi/blob/develop/docs/user_dict.md) (written in Japanese, English version is not available yet).

docs/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ optional arguments:
293293
-h, --help show this help message and exit
294294
-d string description comment to be embedded on dictionary
295295
-o file output file (default: user.dic)
296-
-s file system dictionary (default: core dic)
296+
-s file system dictionary path (default: system core dictionary path)
297297
```
298298
299299
辞書ファイル形式については[user_dict.md](https://github.com/WorksApplications/Sudachi/blob/develop/docs/user_dict.md)を参照してください。

sudachipy/command_line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def main():
207207
parser_ubd.add_argument('-o', dest='out_file', metavar='file', default='user.dic',
208208
help='output file (default: user.dic)')
209209
parser_ubd.add_argument('-s', dest='system_dic', metavar='file', required=False,
210-
help='system dictionary (default: core dic)')
210+
help='system dictionary path (default: system core dictionary path)')
211211
parser_ubd.add_argument("in_files", metavar="file", nargs=argparse.ONE_OR_MORE,
212212
help='source files with CSV format (one or more)')
213213
parser_ubd.set_defaults(handler=_command_user_build, print_usage=parser_ubd.print_usage)

0 commit comments

Comments
 (0)