Commit 297bf7ce authored by Skip Montanaro's avatar Skip Montanaro

update commonprefix doc to make sure user is aware it works

character-by-character and that that behavior may result in it returning
prefixes that are not valid paths
parent 640f483c
......@@ -21,9 +21,11 @@ of the pair returned by \code{split(\var{path})}.
\end{funcdesc}
\begin{funcdesc}{commonprefix}{list}
Return the longest string that is a prefix of all strings in
Return the longest path prefix (taken character-by-character) that is a
prefix of all paths in
\var{list}. If \var{list} is empty, return the empty string
(\code{''}).
(\code{''}). Note that this may return invalid paths because it works a
character at a time.
\end{funcdesc}
\begin{funcdesc}{dirname}{path}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment