diff options
author | Luca Favatella <[email protected]> | 2015-09-17 23:44:40 +0100 |
---|---|---|
committer | Hans Bolinder <[email protected]> | 2016-01-26 09:11:46 +0100 |
commit | 48fc6ff5f6fcf4e1cace205e9ce120a3232a68bb (patch) | |
tree | bb5f44647dcb9aa4f421ac396304a284563d8894 /lib/dialyzer/src/dialyzer_callgraph.erl | |
parent | ccb54d17f2154ec7043ae4d725f5f6c38c158270 (diff) | |
download | otp-48fc6ff5f6fcf4e1cace205e9ce120a3232a68bb.tar.gz otp-48fc6ff5f6fcf4e1cace205e9ce120a3232a68bb.tar.bz2 otp-48fc6ff5f6fcf4e1cace205e9ce120a3232a68bb.zip |
Clarify that dialyzer_callgraph:callgraph() type is opaque
Diffstat (limited to 'lib/dialyzer/src/dialyzer_callgraph.erl')
-rw-r--r-- | lib/dialyzer/src/dialyzer_callgraph.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/src/dialyzer_callgraph.erl b/lib/dialyzer/src/dialyzer_callgraph.erl index ede29b42bc..211242e506 100644 --- a/lib/dialyzer/src/dialyzer_callgraph.erl +++ b/lib/dialyzer/src/dialyzer_callgraph.erl @@ -122,7 +122,7 @@ %% Exported Types --type callgraph() :: #callgraph{}. +-opaque callgraph() :: #callgraph{}. -type active_digraph() :: {'d', digraph:graph()} | {'e', ets:tid(), ets:tid()}. |