Author: maartenc
Date: Thu Dec 23 22:14:28 2010
New Revision: 1052393
URL: http://svn.apache.org/viewvc?rev=1052393&view=rev
Log:
Fixed error in globmapper example: the correct attribute is 'handledirsep'
instead of 'ignoredirchar'.
Modified:
ant/core/trunk/docs/manual/Types/mapper.html
Modified: ant/core/trunk/docs/manual/Types/mapper.html
URL:
http://svn.apache.org/viewvc/ant/core/trunk/docs/manual/Types/mapper.html?rev=1052393&r1=1052392&r2=1052393&view=diff
==============================================================================
--- ant/core/trunk/docs/manual/Types/mapper.html (original)
+++ ant/core/trunk/docs/manual/Types/mapper.html Thu Dec 23 22:14:28 2010
@@ -335,7 +335,7 @@ that don't match the <code>from</code> p
<pathconvert property="x" targetos="unix">
<path path="d/e/f/j.java"/>
<mapper>
- <globmapper from="${basedir}\d/e\*" to="*"
ignoredirchar="yes"/>
+ <globmapper from="${basedir}\d/e\*" to="*" handledirsep="yes"/>
</mapper>
</pathconvert>
<echo>x is ${x}</echo>