From 8805fc020ec99e0abc440a5f7c2334b419a970a6 Mon Sep 17 00:00:00 2001 From: chacham2 Date: Mon, 7 Mar 2022 15:10:21 -0500 Subject: [PATCH] typo combinateion ->combination --- .../VS_Snippets_Winforms/MeasureItemEventArgs/VB/form1.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/visualbasic/VS_Snippets_Winforms/MeasureItemEventArgs/VB/form1.vb b/snippets/visualbasic/VS_Snippets_Winforms/MeasureItemEventArgs/VB/form1.vb index 721dc09e157..d36a60c3314 100644 --- a/snippets/visualbasic/VS_Snippets_Winforms/MeasureItemEventArgs/VB/form1.vb +++ b/snippets/visualbasic/VS_Snippets_Winforms/MeasureItemEventArgs/VB/form1.vb @@ -107,7 +107,7 @@ Namespace ListBoxOwnerDrawSnippet End If ' Select the appropriate brush depending on if the item is selected. - ' Since State can be a combinateion (bit-flag) of enum values, you can't use + ' Since State can be a combination (bit-flag) of enum values, you can't use ' "==" to compare them. If (e.State And DrawItemState.Selected) = DrawItemState.Selected Then brush = SystemBrushes.HighlightText