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 #13804 from jeblair/devel

Fix typo in API docs
This commit is contained in:
Matt Martz 2016-01-11 11:59:25 -06:00
commit a99ea7f3af

View file

@ -53,7 +53,7 @@ In 2.0 things get a bit more complicated to start, but you end up with much more
name = "Ansible Play", name = "Ansible Play",
hosts = 'localhost', hosts = 'localhost',
gather_facts = 'no', gather_facts = 'no',
tasks = [ dict(action=dict(module='debug', args=(msg='Hello Galaxy!'))) ] tasks = [ dict(action=dict(module='debug', args=dict(msg='Hello Galaxy!'))) ]
) )
play = Play().load(play_source, variable_manager=variable_manager, loader=loader) play = Play().load(play_source, variable_manager=variable_manager, loader=loader)