aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2016-08-25 11:09:37 +0200
committerSiri Hansen <[email protected]>2016-08-25 11:09:37 +0200
commita15b8a8f3ac81ddfad05c812c04101263ca9681f (patch)
tree066cfeabd48a80be8f6af9a8d4f263e807fb74cd /lib
parent08e22b2d848bc9f5087adfdc5a651791d7fbcba3 (diff)
parente3952b06cc38dcb9939936140bf07a37a428e46b (diff)
downloadotp-a15b8a8f3ac81ddfad05c812c04101263ca9681f.tar.gz
otp-a15b8a8f3ac81ddfad05c812c04101263ca9681f.tar.bz2
otp-a15b8a8f3ac81ddfad05c812c04101263ca9681f.zip
Merge branch 'maint'
Diffstat (limited to 'lib')
-rw-r--r--lib/reltool/src/reltool.hrl26
1 files changed, 13 insertions, 13 deletions
diff --git a/lib/reltool/src/reltool.hrl b/lib/reltool/src/reltool.hrl
index 9ac22b9450..89b5f3a997 100644
--- a/lib/reltool/src/reltool.hrl
+++ b/lib/reltool/src/reltool.hrl
@@ -154,19 +154,19 @@
-record(app_info,
{
- description = "" :: string(),
- id = "" :: string(),
- vsn = "" :: app_vsn(),
- modules = [] :: [mod_name()],
- maxP = infinity :: integer() | infinity,
- maxT = infinity :: integer() | infinity,
- registered = [] :: [atom()],
- incl_apps = [] :: [app_name()],
- applications = [] :: [app_name()],
- env = [] :: [{atom(), term()}],
- mod = undefined :: {mod_name(), [term()]} | undefined,
- start_phases = undefined :: [{atom(), term()}] | undefined,
- runtime_dependencies = [] :: [string()]
+ description = "" :: '_' | string(),
+ id = "" :: '_' | string(),
+ vsn = "" :: '_' | app_vsn(),
+ modules = [] :: '_' | [mod_name()],
+ maxP = infinity :: '_' | integer() | infinity,
+ maxT = infinity :: '_' | integer() | infinity,
+ registered = [] :: '_' | [atom()],
+ incl_apps = [] :: '_' | '$3' | [app_name()],
+ applications = [] :: '_' | '$2' | [app_name()],
+ env = [] :: '_' | [{atom(), term()}],
+ mod = undefined :: '_' | {mod_name(), [term()]} | undefined,
+ start_phases = undefined :: '_' | [{atom(), term()}] | undefined,
+ runtime_dependencies = [] :: '_' | [string()]
}).
-record(regexp, {source, compiled}).