diff options
author | Lukas Larsson <[email protected]> | 2012-08-21 17:44:49 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2012-08-23 16:18:54 +0200 |
commit | a95a238719369feb1002daeacf4e1485439a38d2 (patch) | |
tree | 079cad631b8a4d42adbbc1a28b3346402f4bfa96 /lib/common_test/src/ct_ftp.erl | |
parent | a62b355f2122385564f5ea2080d9705e2ef45efa (diff) | |
download | otp-a95a238719369feb1002daeacf4e1485439a38d2.tar.gz otp-a95a238719369feb1002daeacf4e1485439a38d2.tar.bz2 otp-a95a238719369feb1002daeacf4e1485439a38d2.zip |
Add more cross reference links to ct docs
Diffstat (limited to 'lib/common_test/src/ct_ftp.erl')
-rw-r--r-- | lib/common_test/src/ct_ftp.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/common_test/src/ct_ftp.erl b/lib/common_test/src/ct_ftp.erl index d1d511f137..723715c986 100644 --- a/lib/common_test/src/ct_ftp.erl +++ b/lib/common_test/src/ct_ftp.erl @@ -66,7 +66,7 @@ %%% {unix,[{ftp,IpAddr}, %%% {username,Username}, %%% {password,Password}]}.</pre> -%%% @see ct:require/3 +%%% @see ct:require/2 put(KeyOrName,LocalFile,RemoteFile) -> Fun = fun(Ftp) -> send(Ftp,LocalFile,RemoteFile) end, open_and_do(KeyOrName,Fun). @@ -86,7 +86,7 @@ put(KeyOrName,LocalFile,RemoteFile) -> %%% %%% <p>The config file must be as for put/3.</p> %%% @see put/3 -%%% @see ct:require/3 +%%% @see ct:require/2 get(KeyOrName,RemoteFile,LocalFile) -> Fun = fun(Ftp) -> recv(Ftp,RemoteFile,LocalFile) end, open_and_do(KeyOrName,Fun). @@ -108,9 +108,9 @@ get(KeyOrName,RemoteFile,LocalFile) -> %%% specify the target. Note that a connection that has no associated target %%% name can only be closed with the handle value.</p> %%% -%%% <p>See <c>ct:require/3</c> for how to create a new <c>Name</c></p> +%%% <p>See <c>ct:require/2</c> for how to create a new <c>Name</c></p> %%% -%%% @see ct:require/3 +%%% @see ct:require/2 open(KeyOrName) -> case ct_util:get_key_from_name(KeyOrName) of {ok,node} -> |