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

This commit is contained in:
Andrew Klychkov 2023-01-03 11:24:59 +01:00 committed by GitHub
parent 8a579b42e3
commit 3ff1fad5f3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 54 additions and 54 deletions

View file

@ -184,7 +184,7 @@ options:
description:
- Fails on error when calling mysql.
type: bool
default: False
default: false
version_added: '0.1.0'
notes:
@ -263,12 +263,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
'''