summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSverker Eriksson <sverker@erlang.org>2018-01-23 21:07:40 +0100
committerSverker Eriksson <sverker@erlang.org>2018-01-23 21:07:40 +0100
commitb6175a41f90f2a0d2d56ec84fa5b4fcf74366d1c (patch)
tree455d63a380ad6cabb16c886e0a0117ba52f381a9
parent7029ac608a31904c294e0d99da1cf4f7750b5294 (diff)
downloaderlang-b6175a41f90f2a0d2d56ec84fa5b4fcf74366d1c.tar.gz
stdlib: Indent example code
-rw-r--r--lib/stdlib/doc/src/ets.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/doc/src/ets.xml b/lib/stdlib/doc/src/ets.xml
index 7fdcf53607..51e35cd2df 100644
--- a/lib/stdlib/doc/src/ets.xml
+++ b/lib/stdlib/doc/src/ets.xml
@@ -985,7 +985,7 @@ Table = ets:new...
MatchSpec = ...
% The following call...
ets:match_spec_run(ets:tab2list(Table),
-ets:match_spec_compile(MatchSpec)),
+ ets:match_spec_compile(MatchSpec)),
% ...gives the same result as the more common (and more efficient)
ets:select(Table, MatchSpec),</code>
<note>