mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
17 lines
283 B
HTML
17 lines
283 B
HTML
<html>
|
|
<body>
|
|
<p>Reports assignments that can be replaced with augmented assignments.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
a = 23
|
|
b = 3
|
|
a = a + b
|
|
</code></pre>
|
|
<p>After the quick-fix is applied, the code changes to:</p>
|
|
<pre><code>
|
|
a = 23
|
|
b = 3
|
|
a += b
|
|
</code></pre>
|
|
</body>
|
|
</html> |