Browse Source

Fix a typo/whitespace

master
Gintas Grigelionis 7 years ago
parent
commit
57edcface9
2 changed files with 3 additions and 3 deletions
  1. +1
    -1
      manual/Types/selectors.html
  2. +2
    -2
      src/tests/junit/org/apache/tools/ant/PropertyExpansionTest.java

+ 1
- 1
manual/Types/selectors.html View File

@@ -84,7 +84,7 @@
symlinks.</li> symlinks.</li>
<li><a href="#ownedBy"><code>&lt;ownedBy&gt;</code></a>&mdash;Select files if they are owned <li><a href="#ownedBy"><code>&lt;ownedBy&gt;</code></a>&mdash;Select files if they are owned
by a given user.</li> by a given user.</li>
<li><a href="#posixGroup"><code>&lt;posixGroup&gt;</code>&mdash;Select
<li><a href="#posixGroup"><code>&lt;posixGroup&gt;</code></a>&mdash;Select
files if they have a given POSIX group.</li> files if they have a given POSIX group.</li>
<li><a href="#posixPermissions"><code>&lt;posixPermissions&gt;</code></a>&mdash;Select <li><a href="#posixPermissions"><code>&lt;posixPermissions&gt;</code></a>&mdash;Select
files if they have given POSIX permissions.</li> files if they have given POSIX permissions.</li>


+ 2
- 2
src/tests/junit/org/apache/tools/ant/PropertyExpansionTest.java View File

@@ -50,7 +50,7 @@ public class PropertyExpansionTest {
{"$$$$-", "$$-"}, {"$$$$-", "$$-"},
{"", ""}, {"", ""},
{"Class$$subclass", "Class$subclass"}, {"Class$$subclass", "Class$subclass"},
/* dollar passthrough */
/* dollar passthrough */
{"$-", "$-"}, {"$-", "$-"},
{"Class$subclass", "Class$subclass"}, {"Class$subclass", "Class$subclass"},
{"$$$-", "$$-"}, {"$$$-", "$$-"},
@@ -63,7 +63,7 @@ public class PropertyExpansionTest {
{"$$$-", "$-"}, {"$$$-", "$-"},
{"a$b", "ab"}, {"a$b", "ab"},
{"$}}", "}}"}, {"$}}", "}}"},
*/
*/
}); });
} }




Loading…
Cancel
Save