From 07bbf902baf6cb9353ac6a0369dad59d0e00b78b Mon Sep 17 00:00:00 2001
From: douglas-raillard-arm <douglas.raillard@gmail.com>
Date: Tue, 16 Jun 2020 12:07:09 +0100
Subject: [PATCH] docs/target: Update Target.{push,pull}() description

Document the fact that it accepts folders as source and destination in
addition to files.
---
 doc/target.rst | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/doc/target.rst b/doc/target.rst
index a7c894e..ab34aff 100644
--- a/doc/target.rst
+++ b/doc/target.rst
@@ -222,8 +222,8 @@ Target
 
    Transfer a file from the host machine to the target device.
 
-   :param source: path of to the file on the host
-   :param dest: path of to the file on the target
+   :param source: path on the host
+   :param dest: path on the target
    :param as_root: whether root is required. Defaults to false.
    :param timeout: timeout (in seconds) for the transfer; if the transfer does
        not  complete within this period, an exception will be raised.
@@ -232,8 +232,8 @@ Target
 
    Transfer a file from the target device to the host machine.
 
-   :param source: path of to the file on the target
-   :param dest: path of to the file on the host
+   :param source: path on the target
+   :param dest: path on the host
    :param as_root: whether root is required. Defaults to false.
    :param timeout: timeout (in seconds) for the transfer; if the transfer does
        not  complete within this period, an exception will be raised.