Skip to content

Commit 048a635

Browse files
brettcannoneksperimental
authored andcommitted
Further tweak the ETS usability sentence (elixir-lang#1203)
1 parent 76bd16a commit 048a635

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

getting-started/erlang-libraries.markdown

+4-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ end
7777
[The digraph module](http://erlang.org/doc/man/digraph.html) (as well as
7878
[digraph_utils](http://erlang.org/doc/man/digraph_utils.html)) contains
7979
functions for dealing with directed graphs built of vertices and edges.
80-
After constructing the graph, the algorithms in there will help finding,
80+
After constructing the graph, the algorithms in there will help find,
8181
for instance, the shortest path between two vertices, or loops in the graph.
8282

8383
Given three vertices, find the shortest path from the first to the last.
@@ -103,8 +103,9 @@ data structures in memory or on disk respectively.
103103

104104
ETS lets you create a table containing tuples. By default, ETS tables
105105
are protected, which means only the owner process may write to the table
106-
but any other process can read. ETS has some functionality to be used as
107-
a simple database, a key-value store or as a cache mechanism.
106+
but any other process can read. ETS has some functionality to allow a
107+
table to be used as a simple database, a key-value store or as a cache
108+
mechanism.
108109

109110
The functions in the `ets` module will modify the state of the table as a
110111
side-effect.

0 commit comments

Comments
 (0)