From d5a4e871ce613f6ce94b1072fe7b7fa1931e6403 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 16 Feb 2012 01:25:27 +0000 Subject: [PATCH] Fix typos git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@70613 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- etg/event.py | 2 +- unittests/test_stream.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etg/event.py b/etg/event.py index 9546bae9..fff719bd 100644 --- a/etg/event.py +++ b/etg/event.py @@ -186,7 +186,7 @@ def run(): 'bool', 'Disconnect', '(int id, int lastId=-1, ' 'wxEventType eventType=wxEVT_NULL, ' 'PyObject* func=NULL)', - doc="Remove an event binding by removing its entry in the synamic event table.", + doc="Remove an event binding by removing its entry in the dynamic event table.", body="""\ if (func && func != Py_None) { // Find the current matching binder that has this function diff --git a/unittests/test_stream.py b/unittests/test_stream.py index 32a7dfec..62134fe1 100644 --- a/unittests/test_stream.py +++ b/unittests/test_stream.py @@ -24,7 +24,7 @@ class stream_Tests(wtc.WidgetTestCase): def test_outputStreamParam(self): # This tests being able to pass a Python file-like object to a - # wrapped function expecting a wxOytputStream. + # wrapped function expecting a wxOutputStream. image = wx.Image(pngFile) stream = StringIO()