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 | |
parent | 7e6fc9adad9ceeda10b10f7b140702f097e5e6e4 (diff) | |
download | otp-f5427a21fdcaebe6144e02c1771609595fa07e7a.tar.gz otp-f5427a21fdcaebe6144e02c1771609595fa07e7a.tar.bz2 otp-f5427a21fdcaebe6144e02c1771609595fa07e7a.zip |
[ssh] Correct documentation
Fix mistakes found by 'xmllint'.
-rw-r--r-- | lib/ssh/doc/src/notes.xml | 10 | ||||
-rw-r--r-- | lib/ssh/doc/src/using_ssh.xml | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index bb111c8e0e..012d7051eb 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -4,7 +4,7 @@ <chapter> <header> <copyright> - <year>2004</year><year>2014</year> + <year>2004</year><year>2015</year> <holder>Ericsson AB. All Rights Reserved.</holder> </copyright> <legalnotice> @@ -216,9 +216,9 @@ <p> Thanks to Simon Cornish</p> <p> - Own Id: OTP-12760 Aux Id: <a + Own Id: OTP-12760 Aux Id: <url href="https://github.com/erlang/otp/pull/715">pull req - 715</a> </p> + 715</url> </p> </item> <item> <p> @@ -384,13 +384,13 @@ </item> <item> <p> - Made Codenomicon Defensics test suite pass: <list> + Made Codenomicon Defensics test suite pass:</p> <list> <item>limit number of algorithms in kexinit message</item> <item>check 'e' and 'f' parameters in kexdh</item> <item>implement 'keyboard-interactive' user authentication on server side</item> <item> return plain text message to bad version exchange message</item> - </list></p> + </list> <p> Own Id: OTP-12784</p> </item> 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), |