summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
authorJohn R Barker <john@johnrbarker.com>2016-10-13 15:47:50 +0100
committerBrian Coca <bcoca@users.noreply.github.com>2016-10-13 10:47:50 -0400
commit312f578f93a13d21b6d5ab45c1dd0bdf8685ef54 (patch)
tree6e832825c3e402d052079a05f7769dac56b0870e /database
parentc6d8cb6cab9fdfd9cd382048bbf419dfbc2dc164 (diff)
downloadansible-modules-core-312f578f93a13d21b6d5ab45c1dd0bdf8685ef54.tar.gz
Bulk spelling improvement to modules-core (#5225)
* Correct spelling mistakes * Correct more spelling issues * merge conflict * Revert typo in parms
Diffstat (limited to 'database')
-rw-r--r--database/mysql/mysql_db.py2
-rw-r--r--database/mysql/mysql_user.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/database/mysql/mysql_db.py b/database/mysql/mysql_db.py
index a63b0d66..f98547b9 100644
--- a/database/mysql/mysql_db.py
+++ b/database/mysql/mysql_db.py
@@ -88,7 +88,7 @@ EXAMPLES = '''
# Dumps all databases to hostname.sql
- mysql_db: state=dump name=all target=/tmp/{{ inventory_hostname }}.sql
-# Imports file.sql similiar to mysql -u <username> -p <password> < hostname.sql
+# Imports file.sql similar to mysql -u <username> -p <password> < hostname.sql
- mysql_db: state=import name=all target=/tmp/{{ inventory_hostname }}.sql
'''
diff --git a/database/mysql/mysql_user.py b/database/mysql/mysql_user.py
index 495ccdf6..010cdce6 100644
--- a/database/mysql/mysql_user.py
+++ b/database/mysql/mysql_user.py
@@ -103,7 +103,7 @@ notes:
without providing any login_user/login_password details. The second must drop a ~/.my.cnf file containing
the new root credentials. Subsequent runs of the playbook will then succeed by reading the new credentials from
the file."
- - Currently, there is only support for the `mysql_native_password` encryted password hash module.
+ - Currently, there is only support for the `mysql_native_password` encrypted password hash module.
author: "Jonathan Mainguy (@Jmainguy)"
extends_documentation_fragment: mysql