diff --git a/manual/Types/selectors.html b/manual/Types/selectors.html index e3289af7f..9265298f2 100644 --- a/manual/Types/selectors.html +++ b/manual/Types/selectors.html @@ -84,7 +84,7 @@ symlinks.
  • <ownedBy>—Select files if they are owned by a given user.
  • -
  • <posixGroup>—Select +
  • <posixGroup>—Select files if they have a given POSIX group.
  • <posixPermissions>—Select files if they have given POSIX permissions.
  • diff --git a/src/tests/junit/org/apache/tools/ant/PropertyExpansionTest.java b/src/tests/junit/org/apache/tools/ant/PropertyExpansionTest.java index ca41b2914..d108171fc 100644 --- a/src/tests/junit/org/apache/tools/ant/PropertyExpansionTest.java +++ b/src/tests/junit/org/apache/tools/ant/PropertyExpansionTest.java @@ -50,7 +50,7 @@ public class PropertyExpansionTest { {"$$$$-", "$$-"}, {"", ""}, {"Class$$subclass", "Class$subclass"}, - /* dollar passthrough */ + /* dollar passthrough */ {"$-", "$-"}, {"Class$subclass", "Class$subclass"}, {"$$$-", "$$-"}, @@ -63,7 +63,7 @@ public class PropertyExpansionTest { {"$$$-", "$-"}, {"a$b", "ab"}, {"$}}", "}}"}, - */ + */ }); }