Docs: change yes/no to true/false (#480)

(cherry picked from commit 3ff1fad5f3)
This commit is contained in:
Andrew Klychkov 2023-01-03 11:24:59 +01:00
commit 281c6fb160
7 changed files with 43 additions and 43 deletions

View file

@ -188,7 +188,7 @@ options:
description:
- Fails on error when calling mysql.
type: bool
default: False
default: false
version_added: '0.1.0'
notes:
@ -267,12 +267,12 @@ EXAMPLES = r'''
community.mysql.mysql_replication:
mode: startreplica
connection_name: primary-1
fail_on_error: yes
fail_on_error: true
- name: Change primary and fail on error (like when replica thread is running)
community.mysql.mysql_replication:
mode: changeprimary
fail_on_error: yes
fail_on_error: true
'''