summaryrefslogtreecommitdiff
path: root/lib/eunit
diff options
context:
space:
mode:
authorRichard Carlsson <richardc@klarna.com>2012-07-17 18:32:31 +0200
committerFredrik Gustafsson <fredrik@erlang.org>2012-08-10 10:57:23 +0200
commit5f9ad541eb520162d86bdc5bcf58e235ced7e786 (patch)
treef0678815a217bef9b6f79a2912704dad67036fd2 /lib/eunit
parent7b1897b9cf0ef125a567004745b211698a976bd9 (diff)
downloaderlang-5f9ad541eb520162d86bdc5bcf58e235ced7e786.tar.gz
documentation fixes
Diffstat (limited to 'lib/eunit')
-rw-r--r--lib/eunit/doc/overview.edoc5
-rw-r--r--lib/eunit/src/eunit_data.erl3
-rw-r--r--lib/eunit/src/eunit_lib.erl5
3 files changed, 5 insertions, 8 deletions
diff --git a/lib/eunit/doc/overview.edoc b/lib/eunit/doc/overview.edoc
index 42d70a6963..b4af31ae6a 100644
--- a/lib/eunit/doc/overview.edoc
+++ b/lib/eunit/doc/overview.edoc
@@ -726,8 +726,9 @@ A <em>simple test object</em> is one of the following:
<li>A tuple `{test, ModuleName, FunctionName}', where `ModuleName' and
`FunctionName' are atoms, referring to the function
`ModuleName:FunctionName/0'</li>
- <li>Obsolete: a pair of atoms `{ModuleName, FunctionName}', equivalent to
- `{test, ModuleName, FunctionName}' if nothing else matches first. </li>
+ <li>(Obsolete) A pair of atoms `{ModuleName, FunctionName}', equivalent to
+ `{test, ModuleName, FunctionName}' if nothing else matches first. This
+ might be removed in a future version.</li>
<li>A pair `{LineNumber, SimpleTest}', where `LineNumber' is a
nonnegative integer and `SimpleTest' is another simple test
object. `LineNumber' should indicate the source line of the test.
diff --git a/lib/eunit/src/eunit_data.erl b/lib/eunit/src/eunit_data.erl
index 0222becb18..0350f9bf6e 100644
--- a/lib/eunit/src/eunit_data.erl
+++ b/lib/eunit/src/eunit_data.erl
@@ -96,7 +96,6 @@
%%
%% @type moduleName() = atom()
%% @type functionName() = atom()
-%% @type arity() = integer()
%% @type appName() = atom()
%% @type fileName() = string()
@@ -159,7 +158,7 @@ iter_prev(#iter{prev = [T | Ts]} = I) ->
%% @throws {bad_test, term()}
%% | {generator_failed, {{M::atom(),F::atom(),A::integer()},
%% exception()}}
-%% | {no_such_function, eunit_lib:mfa()}
+%% | {no_such_function, mfa()}
%% | {module_not_found, moduleName()}
%% | {application_not_found, appName()}
%% | {file_read_error, {Reason::atom(), Message::string(),
diff --git a/lib/eunit/src/eunit_lib.erl b/lib/eunit/src/eunit_lib.erl
index f0fd26eb5d..ea9e944d7e 100644
--- a/lib/eunit/src/eunit_lib.erl
+++ b/lib/eunit/src/eunit_lib.erl
@@ -40,13 +40,10 @@
%%
%% @type exceptionClass() = error | exit | throw
%%
-%% @type stackTrace() = [{moduleName(), functionName(),
-%% arity() | argList()}]
+%% @type stackTrace() = [{moduleName(), functionName(), arity() | argList()}]
%%
%% @type moduleName() = atom()
%% @type functionName() = atom()
-%% @type arity() = integer()
-%% @type mfa() = {moduleName(), functionName(), arity()}
%% @type argList() = [term()]
%% @type fileName() = string()