From 6f9c28263e69a6c89864c3203a7bc66ded89b2ee Mon Sep 17 00:00:00 2001 From: Ahmet Sait Date: Sun, 5 May 2024 23:24:57 +0300 Subject: [PATCH] Group all `Behaviour` into `Behavior` --- Scintilla.NET/Scintilla.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Scintilla.NET/Scintilla.cs b/Scintilla.NET/Scintilla.cs index b45309b..2193c9f 100644 --- a/Scintilla.NET/Scintilla.cs +++ b/Scintilla.NET/Scintilla.cs @@ -3274,11 +3274,11 @@ public unsafe void ClearRepresentation(string encodedString) #region Properties /// - /// Gets or sets whether Scintilla's native drag & drop should be used instead of WinForms based one. + /// Gets or sets whether Scintilla's native drag & drop should be used instead of WinForms based one. /// - /// true if Scintilla's native drag & drop should be used; otherwise, false. The default is false. + /// true if Scintilla's native drag & drop should be used; otherwise, false. The default is false. [DefaultValue(false)] - [Category("Behaviour")] + [Category("Behavior")] [Description("Indicates whether Scintilla's native drag & drop should be used instead of WinForms based one.")] public bool _ScintillaManagedDragDrop { get; set; } // Underscore is used so that WinForms Designer sets it before any other @@ -3291,7 +3291,7 @@ public unsafe void ClearRepresentation(string encodedString) /// /// The bi-directionality of the Scintilla control. [DefaultValue(BiDirectionalDisplayType.Disabled)] - [Category("Behaviour")] + [Category("Behavior")] [Description("The bi-directionality of the Scintilla control.")] public BiDirectionalDisplayType BiDirectionality { @@ -3317,7 +3317,7 @@ public BiDirectionalDisplayType BiDirectionality /// /// true if reading layout is from right to left; otherwise, false. [DefaultValue(false)] - [Category("Behaviour")] + [Category("Behavior")] [Description("A value indicating whether the reading layout is from right to left.")] public bool UseRightToLeftReadingLayout {