mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix grammar because it's driving me crazy
This commit is contained in:
parent
3a4d7b07cf
commit
01b3dced33
1 changed files with 3 additions and 3 deletions
|
@ -942,7 +942,7 @@ def check(ctx, files, check_proper_formatting=False, error_on_known_failures=Fal
|
|||
):
|
||||
warnings += 1
|
||||
utils.warn(
|
||||
"The function '{}' on '{}' does not have a 'CLI Example:' in it's docstring",
|
||||
"The function '{}' on '{}' does not have a 'CLI Example:' in its docstring",
|
||||
funcname,
|
||||
relpath,
|
||||
)
|
||||
|
@ -950,7 +950,7 @@ def check(ctx, files, check_proper_formatting=False, error_on_known_failures=Fal
|
|||
errors += 1
|
||||
exitcode = 1
|
||||
utils.error(
|
||||
"The function '{}' on '{}' does not have a 'CLI Example:' in it's docstring",
|
||||
"The function '{}' on '{}' does not have a 'CLI Example:' in its docstring",
|
||||
funcname,
|
||||
relpath,
|
||||
)
|
||||
|
@ -978,7 +978,7 @@ def check(ctx, files, check_proper_formatting=False, error_on_known_failures=Fal
|
|||
exitcode = 1
|
||||
utils.error(
|
||||
"The function {!r} on '{}' does not have a proper 'CLI Example:' section in "
|
||||
"it's docstring. The proper format is:\n"
|
||||
"its docstring. The proper format is:\n"
|
||||
"CLI Example:\n"
|
||||
"\n"
|
||||
".. code-block:: bash\n"
|
||||
|
|
Loading…
Add table
Reference in a new issue