diff --git a/WHATSNEW b/WHATSNEW index 4ce440279..36fdf95bb 100644 --- a/WHATSNEW +++ b/WHATSNEW @@ -12,6 +12,8 @@ Fixed bugs: Other changes: -------------- + * Documentation fix for if/unless attributes. PR 55359. + Changes from Ant 1.9.1 TO Ant 1.9.2 =================================== diff --git a/manual/ifunless.html b/manual/ifunless.html index 02ea00785..abbdce1b9 100644 --- a/manual/ifunless.html +++ b/manual/ifunless.html @@ -36,9 +36,9 @@

The if and unless namespaces support the following 3 conditions :

@@ -48,8 +48,8 @@ xmlns:unless="ant:unless" > <exec executable="java"> - <arg line="-X" if:true="showextendedparams"/> - <arg line="-version" unless:true="showextendedparams"/> + <arg line="-X" if:true="${showextendedparams}"/> + <arg line="-version" unless:true="${showextendedparams}"/> </exec> <condition property="onmac"> <os family="mac"/>