From 2b019a922a0ea59b394d815e24b7196f51795cd0 Mon Sep 17 00:00:00 2001 From: Jane Doe Date: Sun, 13 Oct 2019 07:51:53 -0700 Subject: [PATCH] commiting -> committing --- SharpTreeView/EditTextBox.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SharpTreeView/EditTextBox.cs b/SharpTreeView/EditTextBox.cs index d4cdad272..fdd3996a0 100644 --- a/SharpTreeView/EditTextBox.cs +++ b/SharpTreeView/EditTextBox.cs @@ -49,12 +49,12 @@ namespace ICSharpCode.TreeView } } - bool commiting; + bool committing; void Commit() { - if (!commiting) { - commiting = true; + if (!committing) { + committing = true; Node.IsEditing = false; if (!Node.SaveEditText(Text)) { @@ -70,7 +70,7 @@ namespace ICSharpCode.TreeView // Init(); //} - commiting = false; + committing = false; } } }