diff options
author | Pierre Fenoll <[email protected]> | 2013-12-13 15:09:38 +0000 |
---|---|---|
committer | Henrik Nord <[email protected]> | 2014-02-14 11:14:13 +0100 |
commit | f2169928a77d5a6b2e3e069b8cf9b8f5300ed543 (patch) | |
tree | 0bae14bbc80d5f51de9949c76b55e9c8ab6dcd26 /lib/common_test/src/ct_util.erl | |
parent | d10a115ab1e66938531b87bef20f886013e7b96b (diff) | |
download | otp-f2169928a77d5a6b2e3e069b8cf9b8f5300ed543.tar.gz otp-f2169928a77d5a6b2e3e069b8cf9b8f5300ed543.tar.bz2 otp-f2169928a77d5a6b2e3e069b8cf9b8f5300ed543.zip |
Fix edoc usage errors
Errors discovered using `erldocs`:
Superfluous @hidden tag would exit edoc application;
'Multiple @spec tag': appended a @clear tag after macro condition;
'@spec arity does not match': added missing argument.
Diffstat (limited to 'lib/common_test/src/ct_util.erl')
-rw-r--r-- | lib/common_test/src/ct_util.erl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/common_test/src/ct_util.erl b/lib/common_test/src/ct_util.erl index ac9857487d..f5eb3a72f0 100644 --- a/lib/common_test/src/ct_util.erl +++ b/lib/common_test/src/ct_util.erl @@ -77,6 +77,8 @@ -record(suite_data, {key,name,value}). %%%----------------------------------------------------------------- +start() -> + start(normal, ".", ?default_verbosity). %%% @spec start(Mode) -> Pid | exit(Error) %%% Mode = normal | interactive %%% Pid = pid() @@ -91,9 +93,6 @@ %%% <code>ct_util_server</code>.</p> %%% %%% @see ct -start() -> - start(normal, ".", ?default_verbosity). - start(LogDir) when is_list(LogDir) -> start(normal, LogDir, ?default_verbosity); start(Mode) -> |