From: Robin Dunn Date: Fri, 18 Feb 2005 05:21:49 +0000 (+0000) Subject: typo X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/71699da48dccf5a2c95f193621f4a10d10cfc602 typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/StaticBox.py b/wxPython/demo/StaticBox.py index 0ee42bae2a..f4ab893452 100644 --- a/wxPython/demo/StaticBox.py +++ b/wxPython/demo/StaticBox.py @@ -11,7 +11,7 @@ class TestPanel(wx.Panel): box = wx.StaticBox(self, -1, "This is a wx.StaticBox") bsizer = wx.StaticBoxSizer(box, wx.VERTICAL) - t = wx.StaticText(self, -1, "Controls placed \"inside\" the box are really it's siblings") + t = wx.StaticText(self, -1, "Controls placed \"inside\" the box are really its siblings") bsizer.Add(t, 0, wx.TOP|wx.LEFT, 10)