]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/README.txt
Corrections to border placement
[wxWidgets.git] / src / stc / README.txt
index 4b66121e643718f9b92b64ccb91eac60d6c4a6d4..a6b185a314110870522dad72e64f43ff75813270 100644 (file)
@@ -2,7 +2,7 @@ This contrib is the wxStyledTextCtrl, which is a wrapper around the
 Scintilla edit control.  (See www.scintilla.org)
 
 There is still VERY MUCH to be done, most notable of which is a more
-advanced sample that exercises more of the code.  (I havn't tested
+advanced sample that exercises more of the code.  (I haven't tested
 AutoComplete or CallTips, or most of the event types at all yet.)  And
 also documentation, adding wrappers for some new scintilla
 functionality, building and testing on wxGTK, etc.  Be patient, it all
@@ -11,11 +11,11 @@ will get there soon.
 
 
 Let me describe a bit about the architecture I am implementing...
-Obviously there is the Platform layer which implements the varioius
+Obviously there is the Platform layer which implements the various
 platform classes by using wxWindows classes and filling in where
 needed.  Then there is a ScintillaWX class that is derived from
 ScintillaBase and implements the necessary virtual methods that
-Scintilla needs to fully funciton.  This class however is not meant to
+Scintilla needs to fully function.  This class however is not meant to
 ever be used directly by wx programmers.  I call it one end of the
 bridge between the wx and Scintilla worlds.  The other end of the
 bridge is a class called wxStyledTextCtrl that looks, feels and acts
@@ -37,7 +37,7 @@ wxStyledTextCtrl derives from wxControl so it has a window that can be
 drawn upon.  When a wxStyledTextCtrl is constructed it constructs a
 ScintillaWX for itself and passes itself to the scintilla object to be
 set as the wMain and wDraw attributes.  All method calls on the STC
-are sent over the bridge in the form of calls to ScintiallWX::WndProc.
+are sent over the bridge in the form of calls to ScintillaWX::WndProc.
 All notifications are sent back over the bridge and turned into
 wxEvents.