Author: robweir Date: Thu Nov 15 15:32:27 2012 New Revision: 1409836 URL: http://svn.apache.org/viewvc?rev=1409836&view=rev Log: correct spelling error
Modified: incubator/ooo/devtools/aoo-stats/platform.py Modified: incubator/ooo/devtools/aoo-stats/platform.py URL: http://svn.apache.org/viewvc/incubator/ooo/devtools/aoo-stats/platform.py?rev=1409836&r1=1409835&r2=1409836&view=diff ============================================================================== --- incubator/ooo/devtools/aoo-stats/platform.py (original) +++ incubator/ooo/devtools/aoo-stats/platform.py Thu Nov 15 15:32:27 2012 @@ -103,7 +103,7 @@ print total = windows + mac + linux + android + solaris + bsd + unknown print "Windows: " + str(windows) + " (" + "%0.2f" % (100.0*windows/total) + "%)" -print "Macintish: " + str(mac) + " (" + "%0.2f" % (100.0*mac/total) + "%)" +print "Macintosh: " + str(mac) + " (" + "%0.2f" % (100.0*mac/total) + "%)" print "Linux: " + str(linux) + " (" + "%0.2f" % (100.0*linux/total) + "%)" print "Android: " + str(android) + " (" + "%0.2f" % (100.0*android/total) + "%)" print "Solaris: " + str(solaris) + " (" + "%0.2f" % (100.0*solaris/total) + "%)"