diff options
author | Björn Gustavsson <[email protected]> | 2013-09-09 19:37:32 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2013-09-09 19:37:32 +0200 |
commit | df984d8f1f5e00b9c78d10540f4d0166dacc0b09 (patch) | |
tree | 14ce520800f532d2b796be35748f1249a242320d /lib/compiler/src | |
parent | 1daca44d2a29f801343210389a5b909e204f2c10 (diff) | |
parent | d63019dad7dc4fb6765a8e82967785878a7b5e98 (diff) | |
download | otp-df984d8f1f5e00b9c78d10540f4d0166dacc0b09.tar.gz otp-df984d8f1f5e00b9c78d10540f4d0166dacc0b09.tar.bz2 otp-df984d8f1f5e00b9c78d10540f4d0166dacc0b09.zip |
Merge branch 'maint'
* maint:
core_lint: Correct the type error() to conform to the code
Diffstat (limited to 'lib/compiler/src')
-rw-r--r-- | lib/compiler/src/core_lint.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compiler/src/core_lint.erl b/lib/compiler/src/core_lint.erl index e5d5fa2bcd..67d37ff1fc 100644 --- a/lib/compiler/src/core_lint.erl +++ b/lib/compiler/src/core_lint.erl @@ -68,7 +68,7 @@ | {'undefined_function', fa(), fa()} | {'tail_segment_not_at_end', fa()}. --type error() :: {module(), err_desc()}. +-type error() :: {'none', module(), err_desc()}. -type warning() :: {module(), term()}. %%----------------------------------------------------------------------- |