1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #7822 from sybeck2k/patch-1

Fixed typo in docs
This commit is contained in:
Michael DeHaan 2014-06-18 11:54:37 -05:00
commit 45ec3318ac

View file

@ -59,7 +59,7 @@ EXAMPLES = '''
# Create a droplet and a corresponding domain record
- digital_cean_droplet: >
- digital_ocean: >
state=present
name=test_droplet
size_id=1
@ -69,8 +69,8 @@ EXAMPLES = '''
- digital_ocean_domain: >
state=present
name={{ test_droplet.name }}.my.domain
ip={{ test_droplet.ip_address }}
name={{ test_droplet.droplet.name }}.my.domain
ip={{ test_droplet.droplet.ip_address }}
'''
import sys