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

Fixing typo in developing_locally.rst (#48535)

`cacheing` → `caching`

+label: docsite_pr
This commit is contained in:
Felix Fontein 2018-11-12 08:21:58 +01:00 committed by Martin Krizek
parent e51964e7a6
commit 9a848ca883

View file

@ -27,7 +27,7 @@ Modules and plugins: what's the difference?
If you're looking to add local functionality to Ansible, you may be wondering whether you need a module or a plugin. Here's a quick overview of the differences: If you're looking to add local functionality to Ansible, you may be wondering whether you need a module or a plugin. Here's a quick overview of the differences:
* Modules are reusable, standalone scripts that can be used by the Ansible API, the :command:`ansible` command, or the :command:`ansible-playbook` command. Modules provide a defined interface, accepting arguments and returning information to Ansible by printing a JSON string to stdout before exiting. * Modules are reusable, standalone scripts that can be used by the Ansible API, the :command:`ansible` command, or the :command:`ansible-playbook` command. Modules provide a defined interface, accepting arguments and returning information to Ansible by printing a JSON string to stdout before exiting.
* Plugins are shared code that can be used by any module. They provide abilities like cacheing information or copying files that are useful for many modules. * Plugins are shared code that can be used by any module. They provide abilities like caching information or copying files that are useful for many modules.
.. _local_modules: .. _local_modules: