mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
20 lines
333 B
HTML
20 lines
333 B
HTML
<html>
|
|
<body>
|
|
Reports comments which are used as code block markers.
|
|
The quick-fix removes such comments.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
while (i < 10) {
|
|
i++;
|
|
} // end while
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
while (i < 10) {
|
|
i++;
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html>
|