From c5c270d9f74294888e42e98522eaf360fe10c719 Mon Sep 17 00:00:00 2001 From: Dane DeValcourt <dane.devalcourt@gmail.com> Date: Fri, 16 Aug 2019 00:10:30 -0500 Subject: [PATCH] Typo fix in nxos_file_copy.py (#60659) Corrected typo in example documentation "local_filr_directory" to "local_file_directory" --- lib/ansible/modules/network/nxos/nxos_file_copy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/nxos/nxos_file_copy.py b/lib/ansible/modules/network/nxos/nxos_file_copy.py index f344862cb15..0a915a285a1 100644 --- a/lib/ansible/modules/network/nxos/nxos_file_copy.py +++ b/lib/ansible/modules/network/nxos/nxos_file_copy.py @@ -133,7 +133,7 @@ EXAMPLES = ''' nxos_file_copy: file_pull: True local_file: "xyz" - local_filr_directory: "dir1/dir2/dir3" + local_file_directory: "dir1/dir2/dir3" remote_file: "/mydir/abc" remote_scp_server: "192.168.0.1" remote_scp_server_user: "myUser"