From 0dde6af789f55458604da0337f265edf1eea764d Mon Sep 17 00:00:00 2001 From: Anders Svensson Date: Thu, 7 Mar 2013 09:34:25 +0100 Subject: Minor edoc fix edoc inserted a type spec into the signature ("Options :: Opts") when @spec and code used different variable names. --- lib/common_test/src/ct_slave.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/common_test/src/ct_slave.erl') diff --git a/lib/common_test/src/ct_slave.erl b/lib/common_test/src/ct_slave.erl index bcb27f66b5..6a14ba31ad 100644 --- a/lib/common_test/src/ct_slave.erl +++ b/lib/common_test/src/ct_slave.erl @@ -176,7 +176,7 @@ start(Host, Node) -> %%% NodeName is the name of current node in this case. %%%

%%% -start(Host, Node, Options) -> +start(Host, Node, Opts) -> ENode = enodename(Host, Node), case erlang:is_alive() of false-> @@ -184,7 +184,7 @@ start(Host, Node, Options) -> true-> case is_started(ENode) of false-> - OptionsRec = fetch_options(Options), + OptionsRec = fetch_options(Opts), do_start(Host, Node, OptionsRec); {true, not_connected}-> {error, started_not_connected, ENode}; -- cgit v1.2.3