Skip to content

Commit

Permalink
change local var name
Browse files Browse the repository at this point in the history
  • Loading branch information
stsrki committed Dec 9, 2024
1 parent f80b548 commit 6d30ea1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@

<Paragraph Margin="Margin.Is0.FromBottom">
<Text>Possible values:</Text>
@for ( int i = 0; i < enumNames.Length; i++ )
@for ( var i = 0; i < enumNames.Length; i++ )
{
int iLocal = i;
<Code>@enumNames[iLocal]</Code>
int enumIndex = i;
<Code>@enumNames[enumIndex]</Code>
@(i < @enumNames.Length - 1 ? ", " : "")
}
</Paragraph>
Expand Down

0 comments on commit 6d30ea1

Please sign in to comment.