diff options
author | Hans Bolinder <[email protected]> | 2011-05-11 10:56:16 +0200 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2011-05-11 10:56:16 +0200 |
commit | b8f38a71e2c7768b6af6fd877f9bf5ceb0dbbaef (patch) | |
tree | 17d1c40b7a0d69829e97adc2ea6546afa1268e88 /lib/stdlib/src | |
parent | 2ef48dca9328e0b928117f21bc9ee6dbc5a614cc (diff) | |
download | otp-b8f38a71e2c7768b6af6fd877f9bf5ceb0dbbaef.tar.gz otp-b8f38a71e2c7768b6af6fd877f9bf5ceb0dbbaef.tar.bz2 otp-b8f38a71e2c7768b6af6fd877f9bf5ceb0dbbaef.zip |
Allow Dets tablenames to be arbitrary terms
Diffstat (limited to 'lib/stdlib/src')
-rw-r--r-- | lib/stdlib/src/dets.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/src/dets.erl b/lib/stdlib/src/dets.erl index 6c91f1efb7..89beeea1bb 100644 --- a/lib/stdlib/src/dets.erl +++ b/lib/stdlib/src/dets.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2010. All Rights Reserved. +%% Copyright Ericsson AB 1996-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -99,7 +99,7 @@ -type object() :: tuple(). -type pattern() :: atom() | tuple(). --type tab_name() :: atom() | reference(). +-type tab_name() :: term(). %%% This is the implementation of the mnesia file storage. Each (non %%% ram-copy) table is maintained in a corresponding .DAT file. The |