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

(cherry picked from commit 3ff1fad5f3)
This commit is contained in:
Andrew Klychkov 2023-01-03 12:56:33 +01:00 committed by GitHub
parent 43e688a37a
commit 43a8037232
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 34 additions and 34 deletions

View file

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