aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDavid Kubecka <[email protected]>2015-04-05 13:29:28 +0200
committerZandra Hird <[email protected]>2015-05-08 14:26:24 +0200
commit0ca698b01fc2f90cf7a14995cb76ccf8e26a9913 (patch)
treeae02426ef0fde35e7793084107e5d43826bdcefc /lib
parenta06c324e16ed07016e258556fbff65a886bd2253 (diff)
downloadotp-0ca698b01fc2f90cf7a14995cb76ccf8e26a9913.tar.gz
otp-0ca698b01fc2f90cf7a14995cb76ccf8e26a9913.tar.bz2
otp-0ca698b01fc2f90cf7a14995cb76ccf8e26a9913.zip
digraph: export label type
Together with vertex and edge, label is a core type of digraph module according to documentation and therefore should be exported as well.
Diffstat (limited to 'lib')
-rw-r--r--lib/stdlib/src/digraph.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/src/digraph.erl b/lib/stdlib/src/digraph.erl
index 0c21271529..1f8caa88a4 100644
--- a/lib/stdlib/src/digraph.erl
+++ b/lib/stdlib/src/digraph.erl
@@ -36,7 +36,7 @@
-export([get_short_path/3, get_short_cycle/2]).
--export_type([graph/0, d_type/0, vertex/0, edge/0]).
+-export_type([graph/0, d_type/0, vertex/0, edge/0, label/0]).
-record(digraph, {vtab = notable :: ets:tab(),
etab = notable :: ets:tab(),