diff options
author | Ayanda Dube <[email protected]> | 2017-09-28 15:51:05 +0200 |
---|---|---|
committer | Ayanda Dube <[email protected]> | 2017-09-28 15:51:05 +0200 |
commit | a95eed16d7c1af6b6b79c4e6c8a7814b2d1efe56 (patch) | |
tree | 6d5487d93bb1720f2a541a00996cd12160f0b2e2 /lib/stdlib/doc/src | |
parent | ce7571e174a426fcb5c36e8d0757ae7ef481634e (diff) | |
download | otp-a95eed16d7c1af6b6b79c4e6c8a7814b2d1efe56.tar.gz otp-a95eed16d7c1af6b6b79c4e6c8a7814b2d1efe56.tar.bz2 otp-a95eed16d7c1af6b6b79c4e6c8a7814b2d1efe56.zip |
Fix grammar in ets:foldl/3 and ets:foldr/3 docs
Diffstat (limited to 'lib/stdlib/doc/src')
-rw-r--r-- | lib/stdlib/doc/src/ets.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdlib/doc/src/ets.xml b/lib/stdlib/doc/src/ets.xml index 95af2b77a5..576959b1c8 100644 --- a/lib/stdlib/doc/src/ets.xml +++ b/lib/stdlib/doc/src/ets.xml @@ -325,7 +325,7 @@ <p><c><anno>Acc0</anno></c> is returned if the table is empty. This function is similar to <seealso marker="lists#foldl/3"><c>lists:foldl/3</c></seealso>. - The table elements are traversed is unspecified order, except for + The table elements are traversed in an unspecified order, except for <c>ordered_set</c> tables, where they are traversed first to last.</p> <p>If <c><anno>Function</anno></c> inserts objects into the table, or another @@ -341,7 +341,7 @@ <p><c><anno>Acc0</anno></c> is returned if the table is empty. This function is similar to <seealso marker="lists#foldr/3"><c>lists:foldr/3</c></seealso>. - The table elements are traversed is unspecified order, except for + The table elements are traversed in an unspecified order, except for <c>ordered_set</c> tables, where they are traversed last to first.</p> <p>If <c><anno>Function</anno></c> inserts objects into the table, or another |