diff options
author | Anthony Ramine <[email protected]> | 2012-06-06 13:31:10 +0200 |
---|---|---|
committer | Anthony Ramine <[email protected]> | 2012-06-06 13:31:10 +0200 |
commit | 198ef4b41ce0b22898b7642354ea5062bc3cc896 (patch) | |
tree | 3f720e295cb9c23a4d07ec923cb6fe7a85312c19 /lib/compiler | |
parent | c98bc0eb21aae3011b09c37c0efd4dd5316b6d30 (diff) | |
download | otp-198ef4b41ce0b22898b7642354ea5062bc3cc896.tar.gz otp-198ef4b41ce0b22898b7642354ea5062bc3cc896.tar.bz2 otp-198ef4b41ce0b22898b7642354ea5062bc3cc896.zip |
Fix type compile:err_info/0
Diffstat (limited to 'lib/compiler')
-rw-r--r-- | lib/compiler/src/compile.erl | 2 |
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()} |