Skip to content

Commit 5674144

Browse files
authored
Merge pull request #10935 from changeworld/patch-17
Fix typo: combinateion -> combination
2 parents 69ef0e7 + 77163c6 commit 5674144

File tree

1 file changed

+1
-1
lines changed
  • docs/snippets/cpp/VS_Snippets_Winforms/MeasureItemEventArgs/CPP

1 file changed

+1
-1
lines changed

docs/snippets/cpp/VS_Snippets_Winforms/MeasureItemEventArgs/CPP/form1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public ref class Form1: public System::Windows::Forms::Form
8989
}
9090

9191
// Select the appropriate brush depending on if the item is selected.
92-
// Since State can be a combinateion (bit-flag) of enum values, you can't use
92+
// Since State can be a combination (bit-flag) of enum values, you can't use
9393
// "==" to compare them.
9494
if ( (e->State & DrawItemState::Selected) == DrawItemState::Selected )
9595
brush = SystemBrushes::HighlightText;

0 commit comments

Comments
 (0)