Skip to content

Commit 3bd98b3

Browse files
committed
Minor typo fix
Signed-off-by: NilashishC <[email protected]>
1 parent d97f30f commit 3bd98b3

File tree

1 file changed

+4
-4
lines changed
  • roles/resource_module/templates/module_utils/network_os/config/resource

1 file changed

+4
-4
lines changed

roles/resource_module/templates/module_utils/network_os/config/resource/resource.py.j2

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class {{ resource|capitalize }}(ConfigBase, {{ resource|capitalize }}Args):
7373
7474
:rtype: A list
7575
:returns: the commands necessary to migrate the current configuration
76-
to the deisred configuration
76+
to the desired configuration
7777
"""
7878
want = self._module.params['config']
7979
have = self.get_{{ resource }}_facts()
@@ -87,7 +87,7 @@ class {{ resource|capitalize }}(ConfigBase, {{ resource|capitalize }}Args):
8787
:param have: the current configuration as a dictionary
8888
:rtype: A list
8989
:returns: the commands necessary to migrate the current configuration
90-
to the deisred configuration
90+
to the desired configuration
9191
"""
9292
state = self._module.params['state']
9393
if state == 'overridden':
@@ -110,7 +110,7 @@ class {{ resource|capitalize }}(ConfigBase, {{ resource|capitalize }}Args):
110110
111111
:rtype: A list
112112
:returns: the commands necessary to migrate the current configuration
113-
to the deisred configuration
113+
to the desired configuration
114114
"""
115115
commands = []
116116
return commands
@@ -121,7 +121,7 @@ class {{ resource|capitalize }}(ConfigBase, {{ resource|capitalize }}Args):
121121
122122
:rtype: A list
123123
:returns: the commands necessary to migrate the current configuration
124-
to the deisred configuration
124+
to the desired configuration
125125
"""
126126
commands = []
127127
return commands

0 commit comments

Comments
 (0)