@@ -188,7 +188,7 @@ def main(args=None, return_list=False):
188188 parser .add_argument (
189189 '-r' , '--check_recursively' ,
190190 action = 'store_true' ,
191- help = 'If specified, check files recursively.'
191+ help = 'If specified, check files recursively. '
192192 'In that case, you need to specify the directory '
193193 'in the path argument.' )
194194 parser .add_argument (
@@ -201,19 +201,19 @@ def main(args=None, return_list=False):
201201 type = _get_list_of_str_from_csv ,
202202 default = '' ,
203203 help = 'A suffix list of function name conditions to ignore.'
204- '\n e.g., test_,sample_'
204+ '\n e.g., test_,sample_. '
205205 '\n Comma separated string is acceptable.' )
206206 parser .add_argument (
207207 '-i' , '--ignore_info_id_list' ,
208208 type = _get_list_of_int_from_csv ,
209209 default = '' ,
210210 help = 'List of IDs to ignore lint checking.'
211- '\n e.g, 1,2,3'
211+ '\n e.g, 1,2,3. '
212212 '\n Comma separated integer is acceptable.' )
213213 parser .add_argument (
214214 '-o' , '--enable_default_or_optional_doc_check' ,
215215 action = 'store_true' ,
216- help = 'If specified, the `default` and `optional` string'
216+ help = 'If specified, the `default` and `optional` string '
217217 'in docstring will be checked.' )
218218 parser .add_argument (
219219 '-d' , '--skip_decorator_name_list' ,
0 commit comments