aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src
diff options
context:
space:
mode:
authorAnthony Ramine <[email protected]>2012-06-06 13:31:10 +0200
committerAnthony Ramine <[email protected]>2012-06-06 13:31:10 +0200
commit198ef4b41ce0b22898b7642354ea5062bc3cc896 (patch)
tree3f720e295cb9c23a4d07ec923cb6fe7a85312c19 /lib/compiler/src
parentc98bc0eb21aae3011b09c37c0efd4dd5316b6d30 (diff)
downloadotp-198ef4b41ce0b22898b7642354ea5062bc3cc896.tar.gz
otp-198ef4b41ce0b22898b7642354ea5062bc3cc896.tar.bz2
otp-198ef4b41ce0b22898b7642354ea5062bc3cc896.zip
Fix type compile:err_info/0
Diffstat (limited to 'lib/compiler/src')
-rw-r--r--lib/compiler/src/compile.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/compile.erl b/lib/compiler/src/compile.erl
index 31c8f6c280..8062ca59fa 100644
--- a/lib/compiler/src/compile.erl
+++ b/lib/compiler/src/compile.erl
@@ -41,7 +41,7 @@
-type option() :: atom() | {atom(), term()} | {'d', atom(), term()}.
--type err_info() :: {erl_scan:line(), module(), term()}. %% ErrorDescriptor
+-type err_info() :: erl_scan:error_info(). %% ErrorDescriptor
-type errors() :: [{file:filename(), [err_info()]}].
-type warnings() :: [{file:filename(), [err_info()]}].
-type mod_ret() :: {'ok', module()}