MorseDistanceModulator.py: improve a comment
authorAntonio Ospite <ao2@ao2.it>
Sun, 3 Jan 2016 17:47:09 +0000 (18:47 +0100)
committerAntonio Ospite <ao2@ao2.it>
Mon, 4 Jan 2016 09:48:26 +0000 (10:48 +0100)
Don't refer to "calls" anymore, MorseDistanceModulator is quite generic
and uses the period/pulse terminology.

Improve the grammar too...

src/savemysugar/MorseDistanceModulator.py

index 1f78382..fccd57f 100755 (executable)
@@ -142,9 +142,9 @@ class MorseDistanceModulator(object):
 
         distances.append(self.symbol_to_distance("EOM"))
 
-        # Since the Morse signals are encoded in the distance between calls, an
-        # extra call is needed in order for receiver actually get the EOM and
-        # see that the transmission has terminated.
+        # Since the Morse symbols are encoded in the distance between periods,
+        # an extra pulse is needed in order for the receiver to actually get
+        # the EOM and see that the transmission has terminated.
         distances.append(0)
 
         return distances