From c15656d652a089ae8ed7ca88141afeb162be612e Mon Sep 17 00:00:00 2001 From: Paul Neumann Date: Mon, 5 Nov 2018 05:33:29 +0100 Subject: [PATCH] net_put: Fix trivial documentation typo (#48035) In commit 30688fecf3 the template value of the mode parameter was renamed to text. Change another mention of this parameter. --- lib/ansible/modules/network/files/net_put.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/files/net_put.py b/lib/ansible/modules/network/files/net_put.py index 7c0f71a4fa7..ef6e298d88e 100644 --- a/lib/ansible/modules/network/files/net_put.py +++ b/lib/ansible/modules/network/files/net_put.py @@ -44,7 +44,7 @@ options: required: no mode: description: - - Set the file transfer mode. If mode is set to I(template) then I(src) + - Set the file transfer mode. If mode is set to I(text) then I(src) file will go through Jinja2 template engine to replace any vars if present in the src file. If mode is set to I(binary) then file will be copied as it is to destination device.