Skip to content

Commit a20e45e

Browse files
author
Gary Gregory
committed
Slightly better Javadoc.
1 parent 11020bc commit a20e45e

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

src/main/java/org/apache/commons/io/FilenameUtils.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -466,17 +466,17 @@ private static String doNormalize(final String fileName, final char separator, f
466466
* The output will be the same on both Unix and Windows except
467467
* for the separator character.
468468
* <pre>
469-
* /foo/ + bar --&gt; /foo/bar
470-
* /foo + bar --&gt; /foo/bar
471-
* /foo + /bar --&gt; /bar
472-
* /foo + C:/bar --&gt; C:/bar
473-
* /foo + C:bar --&gt; C:bar (*)
474-
* /foo/a/ + ../bar --&gt; /foo/bar
475-
* /foo/ + ../../bar --&gt; null
476-
* /foo/ + /bar --&gt; /bar
477-
* /foo/.. + /bar --&gt; /bar
478-
* /foo + bar/c.txt --&gt; /foo/bar/c.txt
479-
* /foo/c.txt + bar --&gt; /foo/c.txt/bar (!)
469+
* /foo/ + bar --&gt; /foo/bar
470+
* /foo + bar --&gt; /foo/bar
471+
* /foo + /bar --&gt; /bar
472+
* /foo + C:/bar --&gt; C:/bar
473+
* /foo + C:bar --&gt; C:bar (*)
474+
* /foo/a/ + ../bar --&gt; /foo/bar
475+
* /foo/ + ../../bar --&gt; null
476+
* /foo/ + /bar --&gt; /bar
477+
* /foo/.. + /bar --&gt; /bar
478+
* /foo + bar/c.txt --&gt; /foo/bar/c.txt
479+
* /foo/c.txt + bar --&gt; /foo/c.txt/bar (!)
480480
* </pre>
481481
* (*) Note that the Windows relative drive prefix is unreliable when
482482
* used with this method.

0 commit comments

Comments
 (0)