From 478806e668ec5df9b2d4971cc3c4e8425b33867d Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Fri, 14 Feb 2025 13:47:18 -0800 Subject: [PATCH] Minor typo fixes (#84714) Signed-off-by: Abhijeet Kasurde --- lib/ansible/plugins/action/gather_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/plugins/action/gather_facts.py b/lib/ansible/plugins/action/gather_facts.py index b9a1c7992b0..dedeb458465 100644 --- a/lib/ansible/plugins/action/gather_facts.py +++ b/lib/ansible/plugins/action/gather_facts.py @@ -93,7 +93,7 @@ class ActionModule(ActionBase): if set(modules).intersection(set(C._ACTION_SETUP)): # most don't realize how setup works with networking connection plugins (forced_local) self._display.warning("Detected 'setup' module and a network OS is set, the output when running it will reflect 'localhost'" - " and not the target when a netwoking connection plugin is used.") + " and not the target when a networking connection plugin is used.") elif not set(modules).difference(set(C._ACTION_SETUP)): # no network OS and setup not in list, add setup by default since 'smart'