diff options
author | Hans Bolinder <[email protected]> | 2017-05-17 15:00:09 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2017-05-22 15:21:49 +0200 |
commit | b537048c96bc340fad6c995f1cac8026674835e4 (patch) | |
tree | 980e988775726d5209cb0f8a490f0cc48f9912db /lib/mnesia/src | |
parent | e577de4216f2dc180aac3e30949804db0b3e817d (diff) | |
download | otp-b537048c96bc340fad6c995f1cac8026674835e4.tar.gz otp-b537048c96bc340fad6c995f1cac8026674835e4.tar.bz2 otp-b537048c96bc340fad6c995f1cac8026674835e4.zip |
mnesia: Correct a type declaration
Diffstat (limited to 'lib/mnesia/src')
-rw-r--r-- | lib/mnesia/src/mnesia.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mnesia/src/mnesia.erl b/lib/mnesia/src/mnesia.erl index dece995d39..3b771e8c5b 100644 --- a/lib/mnesia/src/mnesia.erl +++ b/lib/mnesia/src/mnesia.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2016. All Rights Reserved. +%% Copyright Ericsson AB 1996-2017. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -166,7 +166,7 @@ -type select_continuation() :: term(). -type snmp_struct() :: [{atom(), snmp_type() | tuple_of(snmp_type())}]. -type snmp_type() :: 'fix_string' | 'string' | 'integer'. --type tuple_of(_) :: tuple(). +-type tuple_of(_T) :: tuple(). -define(DEFAULT_ACCESS, ?MODULE). |