diff options
author | Hans Bolinder <[email protected]> | 2015-10-13 14:02:17 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2015-11-17 15:53:25 +0100 |
commit | f5427a21fdcaebe6144e02c1771609595fa07e7a (patch) | |
tree | a7efd08525ba82d45e17527b8dab82abedb4ec43 /lib/ssh/doc/src/using_ssh.xml | |
parent | 7e6fc9adad9ceeda10b10f7b140702f097e5e6e4 (diff) | |
download | otp-f5427a21fdcaebe6144e02c1771609595fa07e7a.tar.gz otp-f5427a21fdcaebe6144e02c1771609595fa07e7a.tar.bz2 otp-f5427a21fdcaebe6144e02c1771609595fa07e7a.zip |
[ssh] Correct documentation
Fix mistakes found by 'xmllint'.
Diffstat (limited to 'lib/ssh/doc/src/using_ssh.xml')
-rw-r--r-- | lib/ssh/doc/src/using_ssh.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssh/doc/src/using_ssh.xml b/lib/ssh/doc/src/using_ssh.xml index 91185a0f6e..2d045fdb60 100644 --- a/lib/ssh/doc/src/using_ssh.xml +++ b/lib/ssh/doc/src/using_ssh.xml @@ -234,7 +234,7 @@ <title>SFTP Client with TAR Compression and Encryption</title> <p>Example of writing and then reading a tar file follows:</p> - <code type="erlang"> + <code type="erl"> {ok,HandleWrite} = ssh_sftp:open_tar(ChannelPid, ?tar_file_name, [write]), ok = erl_tar:add(HandleWrite, .... ), ok = erl_tar:add(HandleWrite, .... ), @@ -249,7 +249,7 @@ </code> <p>The previous write and read example can be extended with encryption and decryption as follows:</p> - <code type="erlang"> + <code type="erl"> %% First three parameters depending on which crypto type we select: Key = <<"This is a 256 bit key. abcdefghi">>, Ivec0 = crypto:rand_bytes(16), |