aboutsummaryrefslogtreecommitdiffstats
path: root/lib/kernel
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2016-09-29 10:53:33 +0200
committerSiri Hansen <[email protected]>2016-09-29 10:53:33 +0200
commitb353bc12df008f9a30c5ec4f71b51ae70a3102d9 (patch)
tree35a83f4531ebca31531de3565367b8d4e08c95f4 /lib/kernel
parent2b1d54c48ea4e72876e02b1380553105138c842c (diff)
parentb1c1bea9242c5b44f17c5f8aca40c9d0eedf0756 (diff)
downloadotp-b353bc12df008f9a30c5ec4f71b51ae70a3102d9.tar.gz
otp-b353bc12df008f9a30c5ec4f71b51ae70a3102d9.tar.bz2
otp-b353bc12df008f9a30c5ec4f71b51ae70a3102d9.zip
Merge branch 'maint'
Diffstat (limited to 'lib/kernel')
-rw-r--r--lib/kernel/doc/src/code.xml11
1 files changed, 8 insertions, 3 deletions
diff --git a/lib/kernel/doc/src/code.xml b/lib/kernel/doc/src/code.xml
index 4db377bcde..3143cdc825 100644
--- a/lib/kernel/doc/src/code.xml
+++ b/lib/kernel/doc/src/code.xml
@@ -382,9 +382,14 @@ zip:create("mnesia-4.4.7.ez",
<name name="add_pathsa" arity="1"/>
<fsummary>Add directories to the beginning of the code path.</fsummary>
<desc>
- <p>Adds the directories in <c><anno>Dirs</anno></c> to the beginning of
- the code path. If a <c><anno>Dir</anno></c> exists, it is removed
- from the old position in the code path.</p>
+ <p>Traverses <c><anno>Dirs</anno></c> and adds
+ each <c><anno>Dir</anno></c> to the beginning of the code
+ path. This means that the order of <c><anno>Dirs</anno></c>
+ is reversed in the resulting code path. For example, if you
+ add <c>[Dir1,Dir2]</c>, the resulting path will
+ be <c>[Dir2,Dir1|OldCodePath]</c>.</p>
+ <p>If a <c><anno>Dir</anno></c> already exists in the code
+ path, it is removed from the old position.</p>
<p>Always returns <c>ok</c>, regardless of the validity of each
individual <c><anno>Dir</anno></c>.</p>
</desc>