X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e79c8a7c103c3945287e87a5c6f17a3ca4392561..58afa32bf44fa638712bf56d46776ff7424c5282:/wxPython/demo/StaticBox.py

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)