Skip to content

Commit 8f2d459

Browse files
committed
Typos
1 parent 498408f commit 8f2d459

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

lbgpsdo.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ class GPSDO(object):
9393
LIMIT_FIN_MAX = 16000000
9494

9595
# 2 kHz .. 2 MHz according to table 26 in Si53xx family reference manual
96-
# 10 kHz .. 2 MHz by triel
96+
# 10 kHz .. 2 MHz by trial
9797
LIMIT_F3_MIN = 10000
9898
LIMIT_F3_MAX = 2000000
9999

@@ -285,7 +285,7 @@ def freqplan(self, modify = False, ignore_freq_limits = False):
285285
"""
286286
Returns the frequency plan.
287287
288-
Returns a dicitonary containing the output and intermediate frequencies
288+
Returns a dictionary containing the output and intermediate frequencies
289289
for the current settings as well as phase relation between output 1 and
290290
output 2. If a value cannot be computed its entry is `None`.
291291
@@ -299,11 +299,11 @@ def freqplan(self, modify = False, ignore_freq_limits = False):
299299
The last element of the returned tuple is an error flag. It is true if
300300
the frequency plan is invalid.
301301
302-
If `modified` is `True`, the method will set unused output dividers
302+
If `modify` is `True`, the method will set unused output dividers
303303
to reasonable default values if they are undefined.
304304
305-
:param modifiy: Enable output 1.
306-
:type modifiy: bool
305+
:param modify: Enable output 1.
306+
:type modify: bool
307307
308308
If `ignore_freq_limits` is `True`, no error is raised if an
309309
intermediate frequency exceeds the limits specified in the datasheet.
@@ -325,8 +325,8 @@ def freqplan(self, modify = False, ignore_freq_limits = False):
325325
if not self.out2 and self.nc2_ls is None and self.out1:
326326
self.nc2_ls = self.nc1_ls
327327

328-
# Use a divider value which is safe under any circumstances if no value
329-
# is specified and both channels are disabled.
328+
# Use a divider value which is safe under any circumstances if no
329+
# value is specified and both channels are disabled.
330330
if not self.out1 and not self.out2:
331331
if self.nc1_ls is None:
332332
self.nc1_ls = 5670

0 commit comments

Comments
 (0)