diff options
author | Siri Hansen <[email protected]> | 2012-03-12 12:35:05 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-03-19 09:48:54 +0100 |
commit | 048c28bc6c75964c3ee7930f5a1aecae92843c88 (patch) | |
tree | 4d9d6de2c32184ac637437a595714d75136c857e /lib/reltool/src | |
parent | 3f42375bbfc1657963f1d3aa7688f2ab67f31c1b (diff) | |
download | otp-048c28bc6c75964c3ee7930f5a1aecae92843c88.tar.gz otp-048c28bc6c75964c3ee7930f5a1aecae92843c88.tar.bz2 otp-048c28bc6c75964c3ee7930f5a1aecae92843c88.zip |
[reltool] Fix type spec and doc for app() and mod()
OTP-9792
Also correct documentation of reltool:install/2: first argument is
RelName, not Server.
Diffstat (limited to 'lib/reltool/src')
-rw-r--r-- | lib/reltool/src/reltool.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reltool/src/reltool.hrl b/lib/reltool/src/reltool.hrl index d3eefb7ff0..fc0078715a 100644 --- a/lib/reltool/src/reltool.hrl +++ b/lib/reltool/src/reltool.hrl @@ -63,7 +63,7 @@ -type mod() :: {incl_cond, incl_cond()} | {debug_info, debug_info()}. -type app() :: {vsn, app_vsn()} - | {mod, mod_name(), mod()} + | {mod, mod_name(), [mod()]} | {mod_cond, mod_cond()} | {incl_cond, incl_cond()} | {app_file, app_file()} |