From 2e6f6882b36bd4b752c27f1e07a7209d74cd9bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20G=C3=B6m=C3=B6ri?= Date: Sun, 26 Feb 2017 14:32:03 +0100 Subject: Fix minor typo in compile:forms/1 doc --- lib/compiler/doc/src/compile.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/compiler/doc/src/compile.xml b/lib/compiler/doc/src/compile.xml index 3ce37b98e9..611cdc71ae 100644 --- a/lib/compiler/doc/src/compile.xml +++ b/lib/compiler/doc/src/compile.xml @@ -669,7 +669,7 @@ module.beam: module.erl \ Compiles a list of forms.

Is the same as - forms(File, [verbose,report_errors,report_warnings]). + forms(Forms, [verbose,report_errors,report_warnings]).

-- cgit v1.2.3 From 73e380177532af093edf3b27926967fefc9dcb0b Mon Sep 17 00:00:00 2001 From: Malcolm Date: Sun, 26 Feb 2017 20:37:18 +0000 Subject: Documentation: use behaviour(ssh_daemon_channel) In the SSH User's Guide, section 2.8 'Creating a Subsystem' uses behaviour(ssh_subsystem) but should use behaviour(ssh_daemon_channel). The renaming was updated in the Reference Manual but never reflected in the User's Guide. --- lib/ssh/doc/src/using_ssh.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/ssh/doc/src/using_ssh.xml b/lib/ssh/doc/src/using_ssh.xml index 0861c641c7..864378b640 100644 --- a/lib/ssh/doc/src/using_ssh.xml +++ b/lib/ssh/doc/src/using_ssh.xml @@ -305,7 +305,7 @@ ok = erl_tar:close(HandleRead), -module(ssh_echo_server). --behaviour(ssh_subsystem). +-behaviour(ssh_daemon_channel). -record(state, { n, id, -- cgit v1.2.3