From ce7eecd782fc7792c478eb2ea301994ea6063df3 Mon Sep 17 00:00:00 2001 From: Abhijeet Kasurde Date: Tue, 7 Aug 2018 23:43:51 +0530 Subject: [PATCH] Misc typo fixes in function docs (#43779) Signed-off-by: Abhijeet Kasurde --- lib/ansible/plugins/inventory/aws_ec2.py | 2 +- lib/ansible/plugins/inventory/constructed.py | 2 +- lib/ansible/plugins/inventory/generator.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ansible/plugins/inventory/aws_ec2.py b/lib/ansible/plugins/inventory/aws_ec2.py index aeae2226d1c..bf2d3188b76 100644 --- a/lib/ansible/plugins/inventory/aws_ec2.py +++ b/lib/ansible/plugins/inventory/aws_ec2.py @@ -475,7 +475,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable): # Composed variables self._set_composite_vars(self.get_option('compose'), host, hostname, strict=strict) - # Complex groups based on jinaj2 conditionals, hosts that meet the conditional are added to group + # Complex groups based on jinja2 conditionals, hosts that meet the conditional are added to group self._add_host_to_composed_groups(self.get_option('groups'), host, hostname, strict=strict) # Create groups based on variable values and add the corresponding hosts to it diff --git a/lib/ansible/plugins/inventory/constructed.py b/lib/ansible/plugins/inventory/constructed.py index 8bb367f01c6..97a73e4ce29 100644 --- a/lib/ansible/plugins/inventory/constructed.py +++ b/lib/ansible/plugins/inventory/constructed.py @@ -70,7 +70,7 @@ from ansible.utils.vars import combine_vars class InventoryModule(BaseInventoryPlugin, Constructable): - """ constructs groups and vars using Jinaj2 template expressions """ + """ constructs groups and vars using Jinja2 template expressions """ NAME = 'constructed' diff --git a/lib/ansible/plugins/inventory/generator.py b/lib/ansible/plugins/inventory/generator.py index ff28b4e83b8..543a88a14e1 100644 --- a/lib/ansible/plugins/inventory/generator.py +++ b/lib/ansible/plugins/inventory/generator.py @@ -82,7 +82,7 @@ from itertools import product class InventoryModule(BaseInventoryPlugin): - """ constructs groups and vars using Jinaj2 template expressions """ + """ constructs groups and vars using Jinja2 template expressions """ NAME = 'generator'