Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix docs build errors #413

Merged
merged 1 commit into from
Jul 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plugins/modules/win_scheduled_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@
execution_time_limit:
description:
- The amount of time allowed to complete the task.
- When set to `PT0S`, the time limit is infinite.
- When set to C(PT0S), the time limit is infinite.
- When omitted, the default time limit is 72 hours.
- This is in the ISO 8601 Duration format C(P[n]Y[n]M[n]DT[n]H[n]M[n]S).
type: str
Expand Down
4 changes: 2 additions & 2 deletions plugins/modules/win_zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
short_description: Compress file or directory as zip archive on the Windows node
description:
- Compress file or directory as zip archive.
- For non-Windows targets, use the M(ansible.builtin.archive) module instead.
- For non-Windows targets, use the M(community.general.archive) module instead.
notes:
- The filenames in the zip are encoded using UTF-8.
requirements:
Expand All @@ -29,7 +29,7 @@
type: path
required: yes
seealso:
- module: ansible.builtin.archive
- module: community.general.archive
author:
- Kento Yagisawa (@hiyoko_taisa)
'''
Expand Down