fix typos

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-06-01 20:19:13 +00:00
parent 2ce1645016
commit e1e3870e09

View File

@@ -26,7 +26,8 @@ The Widget Inspection Tool (WIT) is very useful debugging tool provided with
wxPython, especially useful to debug layout issues when using :class:`Sizer`.
The :class:`InspectableApp` is a "pre-mixed" :class:`App` and the
:class:`InspectionMixin` allows you to mix it with your custom :class:`App`.
:class:`InspectionMixin` allows you to mix it with your custom :class:`App`
class.
Usage
@@ -35,13 +36,12 @@ Usage
The following samples assume the default key sequence (*ctrl-alt-i*) to start
the WIT, additional information can be found on the following wiki page.
http://wiki.wxpython.org/Widget%20Inspection%20Tool
http://wiki.wxpython.org/Widget_Inspection_Tool
InspectableApp usage::
import wx
import wx.lib.sized_controls as sc
import wx.lib.mixins.inspection as wit
app = wit.InspectableApp()
@@ -60,11 +60,10 @@ InspectableApp usage::
app.MainLoop()
InspectableApp usage::
InspectionMixin usage::
import wx
import wx.lib.sized_controls as sc
import wx.lib.mixins.inspection as wit
class MyApp(wx.App, wit.InspectionMixin):
@@ -87,7 +86,6 @@ InspectableApp usage::
app.MainLoop()
"""