Skip to content

Commit 11ff1e3

Browse files
committed
Remove the term "set associative" since it is incorrect.
1 parent 528c074 commit 11ff1e3

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

README.markdown

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
Erlang 2-way Set Associative Map
2-
================================
1+
Erlang 2-way Map
2+
================
33

44
An interface is provided which takes an Erlang data structure module name
5-
that contains a dict API to provide a 2-way set associate map. The resulting
6-
data structure would be used when 2 different key values need to refer to the
7-
same value (e.g., using both a UUID and an Erlang pid to reference
8-
configuration data).
5+
that contains a dict API to provide a 2-way map. The resulting data structure
6+
would be used when 2 different key values need to refer to the same value
7+
(e.g., using both a UUID and an Erlang pid to reference configuration data).
98

109
Author
1110
------

doc/key2value.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
1212
<h1>Module key2value</h1>
1313
<ul class="index"><li><a href="#description">Description</a></li><li><a href="#types">Data Types</a></li><li><a href="#index">Function Index</a></li><li><a href="#functions">Function Details</a></li></ul>
1414
<h3><a name="Key2Value">Key2Value</a></h3>
15-
Maintain 2 associative lookups for 2 separate keys and 1 value.
15+
Maintain 2 lookups for 2 separate keys and 1 value.
1616
<p>Copyright © 2011-2014 Michael Truog</p>
1717

18-
<p><b>Version:</b> 1.3.3 Sep 30 2014 14:04:33
18+
<p><b>Version:</b> 1.3.3 May 8 2015 10:13:28
1919
------------------------------------------------------------------------</p>
2020
<p><b>Authors:</b> Michael Truog (<a href="mailto:mjtruog [at] gmail (dot) com"><tt>mjtruog [at] gmail (dot) com</tt></a>).</p>
2121

2222
<h2><a name="description">Description</a></h2>
2323
<h3><a name="Key2Value">Key2Value</a></h3>
24-
Maintain 2 associative lookups for 2 separate keys and 1 value.
24+
Maintain 2 lookups for 2 separate keys and 1 value.
2525
The interface creates a bidirectional lookup where key1 can store
2626
multiple key2 associations to the same value.
2727
The supplied data structure module must have dict interface functions.
@@ -130,6 +130,6 @@ <h3 class="function"><a name="store-4">store/4</a></h3>
130130
<hr>
131131

132132
<div class="navbar"><a name="#navbar_bottom"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
133-
<p><i>Generated by EDoc, Sep 30 2014, 14:04:33.</i></p>
133+
<p><i>Generated by EDoc, May 8 2015, 10:13:28.</i></p>
134134
</body>
135135
</html>

doc/overview-summary.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
22
<html>
33
<head>
4-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
4+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
55
<title>The key2value application</title>
66
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="EDoc">
77
</head>
@@ -11,6 +11,6 @@ <h1>The key2value application</h1>
1111

1212
<hr>
1313
<div class="navbar"><a name="#navbar_bottom"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
14-
<p><i>Generated by EDoc, Sep 30 2014, 14:04:33.</i></p>
14+
<p><i>Generated by EDoc, May 8 2015, 10:13:28.</i></p>
1515
</body>
1616
</html>

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defmodule Key2value.Mixfile do
1515
end
1616

1717
defp description do
18-
"Erlang 2-way Set Associative Map"
18+
"Erlang 2-way Map"
1919
end
2020

2121
defp package do

src/key2value.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{application, key2value,
2-
[{description, "2-way Set Associative Map Data Structure"},
2+
[{description, "2-way Map Data Structure"},
33
{vsn, "1.5.0"},
44
{modules, [key2value]},
55
{registered, []},

src/key2value.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%%%------------------------------------------------------------------------
55
%%% @doc
66
%%% ==Key2Value==
7-
%%% Maintain 2 associative lookups for 2 separate keys and 1 value.
7+
%%% Maintain 2 lookups for 2 separate keys and 1 value.
88
%%% The interface creates a bidirectional lookup where key1 can store
99
%%% multiple key2 associations to the same value.
1010
%%% The supplied data structure module must have dict interface functions.

0 commit comments

Comments
 (0)