The unified diff between revisions [2531d294..] and [0b849689..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'syllables.py'

#
#
# patch "syllables.py"
#  from [77a91fa93c05a98c5b8efb24a081e921b42d59a6]
#    to [d4448d1d5ee78feb8d2af3a1ebbdbea33aaf4154]
#
============================================================
--- syllables.py	77a91fa93c05a98c5b8efb24a081e921b42d59a6
+++ syllables.py	d4448d1d5ee78feb8d2af3a1ebbdbea33aaf4154
@@ -18,7 +18,7 @@ class Syllables:
         return rv

     def lookup(self, token):
-        # note: a token may (due to upwriting) be one or more words.
+        # note: a token may comprise one or more words.
         # so split on ' ' before doing the lookup, then just do a sum
         return sum(map(self.__lookup, token.split(' ')))