diff options
author | Richard Carlsson <[email protected]> | 2012-07-17 18:32:31 +0200 |
---|---|---|
committer | Fredrik Gustafsson <[email protected]> | 2012-08-10 10:57:23 +0200 |
commit | 5f9ad541eb520162d86bdc5bcf58e235ced7e786 (patch) | |
tree | f0678815a217bef9b6f79a2912704dad67036fd2 /lib/eunit/src | |
parent | 7b1897b9cf0ef125a567004745b211698a976bd9 (diff) | |
download | otp-5f9ad541eb520162d86bdc5bcf58e235ced7e786.tar.gz otp-5f9ad541eb520162d86bdc5bcf58e235ced7e786.tar.bz2 otp-5f9ad541eb520162d86bdc5bcf58e235ced7e786.zip |
documentation fixes
Diffstat (limited to 'lib/eunit/src')
-rw-r--r-- | lib/eunit/src/eunit_data.erl | 3 | ||||
-rw-r--r-- | lib/eunit/src/eunit_lib.erl | 5 |
2 files changed, 2 insertions, 6 deletions
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() |