You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@steve.apache.org by hu...@apache.org on 2015/03/25 03:21:37 UTC

svn commit: r1669046 - in /steve/trunk/pysteve/lib/plugins: mntv.py stv.py

Author: humbedooh
Date: Wed Mar 25 02:21:37 2015
New Revision: 1669046

URL: http://svn.apache.org/r1669046
Log:
typos'n'such

Modified:
    steve/trunk/pysteve/lib/plugins/mntv.py
    steve/trunk/pysteve/lib/plugins/stv.py

Modified: steve/trunk/pysteve/lib/plugins/mntv.py
URL: http://svn.apache.org/viewvc/steve/trunk/pysteve/lib/plugins/mntv.py?rev=1669046&r1=1669045&r2=1669046&view=diff
==============================================================================
--- steve/trunk/pysteve/lib/plugins/mntv.py (original)
+++ steve/trunk/pysteve/lib/plugins/mntv.py Wed Mar 25 02:21:37 2015
@@ -83,7 +83,7 @@ def tallyMNTV(votes, issue):
 constants.VOTE_TYPES += (
     {
         'key': "mntv1",
-        'description': "Multiple Non-Transferable Votes (MNTV) with 1 seat",
+        'description': "Multiple Non-Transferable Votes with 1 seat",
         'category': 'dh',
         'validate_func': validateMNTV,
         'vote_func': None,
@@ -96,7 +96,7 @@ for i in range(2,constants.MAX_NUM+1):
     constants.VOTE_TYPES += (
         {
             'key': "mntv%u" % i,
-            'description': "Multiple Non-Transferable Votes (MNTV) with %u seats" % i,
+            'description': "Multiple Non-Transferable Votes with %u seats" % i,
             'category': 'mntv',
             'validate_func': validateMNTV,
             'vote_func': None,

Modified: steve/trunk/pysteve/lib/plugins/stv.py
URL: http://svn.apache.org/viewvc/steve/trunk/pysteve/lib/plugins/stv.py?rev=1669046&r1=1669045&r2=1669046&view=diff
==============================================================================
--- steve/trunk/pysteve/lib/plugins/stv.py (original)
+++ steve/trunk/pysteve/lib/plugins/stv.py Wed Mar 25 02:21:37 2015
@@ -170,7 +170,7 @@ def tallySTV(votes, issue):
 constants.VOTE_TYPES += (
     {
         'key': "stv1",
-        'description': "Single Transferrable Vote with 1 seat",
+        'description': "Single Transferable Vote with 1 seat",
         'category': 'stv',
         'validate_func': validateSTV,
         'vote_func': None,
@@ -183,7 +183,7 @@ for i in range(2,constants.MAX_NUM+1):
     constants.VOTE_TYPES += (
         {
             'key': "stv%02u" % i,
-            'description': "Single Transferrable Vote with %u seats" % i,
+            'description': "Single Transferable Vote with %u seats" % i,
             'category': 'stv',
             'validate_func': validateSTV,
             'vote_func': None,