From 9a848ca883f609e2076743e7192f866ea3f9f631 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Mon, 12 Nov 2018 08:21:58 +0100 Subject: [PATCH] Fixing typo in developing_locally.rst (#48535) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `cacheing` → `caching` +label: docsite_pr --- docs/docsite/rst/dev_guide/developing_locally.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docsite/rst/dev_guide/developing_locally.rst b/docs/docsite/rst/dev_guide/developing_locally.rst index 859e95da212..980ebbd0f21 100644 --- a/docs/docsite/rst/dev_guide/developing_locally.rst +++ b/docs/docsite/rst/dev_guide/developing_locally.rst @@ -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: * 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: