Author: mbenson
Date: Tue Feb 16 22:02:11 2010
New Revision: 910723
URL: http://svn.apache.org/viewvc?rev=910723&view=rev
Log:
clarify :? syntax
Modified:
ant/antlibs/props/trunk/docs/stringops.html
Modified: ant/antlibs/props/trunk/docs/stringops.html
URL:
http://svn.apache.org/viewvc/ant/antlibs/props/trunk/docs/stringops.html?rev=910723&r1=910722&r2=910723&view=diff
==============================================================================
--- ant/antlibs/props/trunk/docs/stringops.html (original)
+++ ant/antlibs/props/trunk/docs/stringops.html Tue Feb 16 22:02:11 2010
@@ -40,7 +40,7 @@
<pre>${foo:=defaultfoo}</pre>
<p>Fail build if property foo unset:</p>
- <pre>${foo:?defaultfoo}</pre>
+ <pre>${foo:?optional error message}</pre>
<p>Evaluate to "if-foo" if property foo set:</p>
<pre>${foo:+if-foo}</pre>