From 5851c4f6d66fab8aa596ba15541d7757a5aeffec Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Sun, 3 Jan 2016 18:47:09 +0100 Subject: [PATCH] MorseDistanceModulator.py: improve a comment Don't refer to "calls" anymore, MorseDistanceModulator is quite generic and uses the period/pulse terminology. Improve the grammar too... --- src/savemysugar/MorseDistanceModulator.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/savemysugar/MorseDistanceModulator.py b/src/savemysugar/MorseDistanceModulator.py index 1f78382..fccd57f 100755 --- a/src/savemysugar/MorseDistanceModulator.py +++ b/src/savemysugar/MorseDistanceModulator.py @@ -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 -- 2.1.4