Fix typos in wxSTC interface

This commit is contained in:
Maarten Bent
2020-07-28 23:42:34 +02:00
parent 8df97af5fe
commit 755afd9d1b
3 changed files with 3 additions and 3 deletions

View File

@@ -331,7 +331,7 @@ set void MarkerSetBack=2042(int markerNumber, colour back)
# Set the background colour used for a particular marker number when its folding block is selected.
set void MarkerSetBackSelected=2292(int markerNumber, colour back)
# Enable/disable highlight for current folding bloc (smallest one that contains the caret)
# Enable/disable highlight for current folding block (smallest one that contains the caret)
fun void MarkerEnableHighlight=2293(bool enabled,)
# Add a marker to a line, returning an ID which can be used to find or delete the marker.

View File

@@ -622,7 +622,7 @@ void wxStyledTextCtrl::MarkerSetBackgroundSelected(int markerNumber, const wxCol
SendMsg(SCI_MARKERSETBACKSELECTED, markerNumber, wxColourAsLong(back));
}
// Enable/disable highlight for current folding bloc (smallest one that contains the caret)
// Enable/disable highlight for current folding block (smallest one that contains the caret)
void wxStyledTextCtrl::MarkerEnableHighlight(bool enabled)
{
SendMsg(SCI_MARKERENABLEHIGHLIGHT, enabled, 0);

View File

@@ -868,7 +868,7 @@ public:
@section event_types Event Types
The following is a brief description of when the control generates these
events and a list of which methods provide relevent information. Additional
events and a list of which methods provide relevant information. Additional
details can be found in the Scintilla documentation
(http://www.scintilla.org/ScintillaDoc.html#Notifications).