intention description: don't use <font> anymore

This commit is contained in:
Yann Cebron
2011-10-12 20:54:39 +02:00
parent 070ce2b593
commit f1bad27fb8
@@ -1,12 +1,10 @@
<html>
<body>
<font face="verdana" size="-1">
This intention converts the ternary operator to the if statement. <br>
For example: <br>
the <i>(a > 0) ? return a;: return -a;</i> <br>
will be converted to the code:<br><i>
if (a > 0) { return a;}<br>
else {return -a;}</i>
</font>
This intention converts the ternary operator to the if statement. <br>
For example: <br>
the <i>(a > 0) ? return a;: return -a;</i> <br>
will be converted to the code:<br><i>
if (a > 0) { return a;}<br>
else {return -a;}</i>
</body>
</html>