]> git.saurik.com Git - wxWidgets.git/commitdiff
no changes, just fix a typo in comment
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 31 Jan 2008 17:21:41 +0000 (17:21 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 31 Jan 2008 17:21:41 +0000 (17:21 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51474 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/vector.h

index e8a6b3c573adbc36c75c61ee165c9a4215b220e2..85d925794371ef7e0b162d2def26a4ce7eaf8823 100644 (file)
@@ -104,7 +104,7 @@ template<typename T>
 class wxVector
 {
 private:
-    // Tthis cryptic expression means "typedef Ops to wxVectorMemOpsMovable if
+    // This cryptic expression means "typedef Ops to wxVectorMemOpsMovable if
     // type T is movable type, otherwise to wxVectorMemOpsGeneric".
     //
     // Note that we use typedef instead of privately deriving from this (which