-
Bug
-
Resolution: Fixed
-
P4
-
15
-
None
-
b09
In the HTML generated for a member signature for an executable element, the opening parens is outside the "parameters" (previously "arguments") span, but the closing parens is inside the span.
<div class="member-signature">
<span class="modifiers">public</span>
<span class="return-type">int</span>
<span class="member-name">m</span>
​(
<span class="parameters">int arg)</span>
</div>
It would be better if both were inside the span or both were outside it.
<div class="member-signature">
<span class="modifiers">public</span>
<span class="return-type">int</span>
<span class="member-name">m</span>
​(
<span class="parameters">int arg)</span>
</div>
It would be better if both were inside the span or both were outside it.