X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1fded56b375bf7a4687af1cdb182899614c1b2a8..96fcf4d86cbdbe5aff4bd620b6ba464568889778:/wxPython/demo/wxListCtrl_virtual.py diff --git a/wxPython/demo/wxListCtrl_virtual.py b/wxPython/demo/wxListCtrl_virtual.py index c6af18cf2c..ba64a193c9 100644 --- a/wxPython/demo/wxListCtrl_virtual.py +++ b/wxPython/demo/wxListCtrl_virtual.py @@ -61,7 +61,7 @@ class TestVirtualList(wxListCtrl): # "virtualness" of the list... Normally you would # determine the text, attributes and/or image based # on values from some external data source, but for - # this demo we'll just calcualte them + # this demo we'll just calculate them def OnGetItemText(self, item, col): return "Item %d, column %d" % (item, col)