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()