diff options
author | Fred Hebert <[email protected]> | 2017-04-22 17:36:29 -0400 |
---|---|---|
committer | Fred Hebert <[email protected]> | 2017-05-17 07:52:50 -0400 |
commit | 8a1138ddfec89b23c19d4d12d30dd575c678356b (patch) | |
tree | 3a60334633733934a2a08f599b3d6f1b1c7786e3 /lib/kernel | |
parent | dfa81717e0e5b07eaecae536523c820368e900de (diff) | |
download | otp-8a1138ddfec89b23c19d4d12d30dd575c678356b.tar.gz otp-8a1138ddfec89b23c19d4d12d30dd575c678356b.tar.bz2 otp-8a1138ddfec89b23c19d4d12d30dd575c678356b.zip |
Fix type declaration for disk_log.hrl
A specific type was given as an atom rather than an actual type
defintion.
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/src/disk_log.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kernel/src/disk_log.hrl b/lib/kernel/src/disk_log.hrl index c9fda8bef5..58f6155adf 100644 --- a/lib/kernel/src/disk_log.hrl +++ b/lib/kernel/src/disk_log.hrl @@ -69,7 +69,7 @@ | {file, FileName :: file:filename()} | {linkto, LinkTo :: none | pid()} | {repair, Repair :: true | false | truncate} - | {type, Type :: dlog_type} + | {type, Type :: dlog_type()} | {format, Format :: dlog_format()} | {size, Size :: dlog_size()} | {distributed, Nodes :: [node()]} |