From 8b278fee5183a8d4f0dbad02e36653f9a27f7d98 Mon Sep 17 00:00:00 2001 From: follower Date: Sat, 29 Nov 2014 18:29:09 +1300 Subject: [PATCH] Correct typo of "actively" (Attempt #2) --- hacking/module_formatter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/module_formatter.py b/hacking/module_formatter.py index 0a7d1c884ca..480083ff804 100755 --- a/hacking/module_formatter.py +++ b/hacking/module_formatter.py @@ -384,7 +384,7 @@ def process_category(category, categories, options, env, template, outputname): category_file.write("""\n\n .. note:: - %s: This marks a module as deprecated, which means a module is kept for backwards compatibility but usage is discouraged. The module documentation details page may explain more about this rationale. - - %s: This marks a module as 'extras', which means it ships with ansible but may be a newer module and possibly (but not necessarily) less activity maintained than 'core' modules. + - %s: This marks a module as 'extras', which means it ships with ansible but may be a newer module and possibly (but not necessarily) less actively maintained than 'core' modules. - Tickets filed on modules are filed to different repos than those on the main open source project. Core module tickets should be filed at `ansible/ansible-modules-core on GitHub `_, extras tickets to `ansible/ansible-modules-extras on GitHub `_ """ % (DEPRECATED, NOTCORE)) category_file.close()