aboutsummaryrefslogtreecommitdiffstats
path: root/lib/compiler/src
diff options
context:
space:
mode:
authorBjörn Gustavsson <[email protected]>2013-09-09 19:37:32 +0200
committerBjörn Gustavsson <[email protected]>2013-09-09 19:37:32 +0200
commitdf984d8f1f5e00b9c78d10540f4d0166dacc0b09 (patch)
tree14ce520800f532d2b796be35748f1249a242320d /lib/compiler/src
parent1daca44d2a29f801343210389a5b909e204f2c10 (diff)
parentd63019dad7dc4fb6765a8e82967785878a7b5e98 (diff)
downloadotp-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.erl2
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()}.
%%-----------------------------------------------------------------------