summaryrefslogtreecommitdiffstats
path: root/src/target/trx_toolkit
diff options
context:
space:
mode:
authorMartin Hauke <mardnh@gmx.de>2019-10-13 19:10:52 +0200
committerlaforge <laforge@osmocom.org>2019-10-17 08:07:39 +0000
commit1f7a2ab5d3e13ead22797d13953be885d583c77e (patch)
treee6226b68f3ff9bbdca5a84f391db8c75bf0007be /src/target/trx_toolkit
parent9731f0d3222f9583b74e8c9713f3e127f5935032 (diff)
Fix common misspellings and typos
Diffstat (limited to 'src/target/trx_toolkit')
-rw-r--r--src/target/trx_toolkit/data_dump.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/trx_toolkit/data_dump.py b/src/target/trx_toolkit/data_dump.py
index da42023b..b91408f6 100644
--- a/src/target/trx_toolkit/data_dump.py
+++ b/src/target/trx_toolkit/data_dump.py
@@ -94,7 +94,7 @@ class DATADumpFile(DATADump):
# True in case of success,
# or False in case of EOF or header parsing error.
def _seek2msg(self, idx):
- # Seek to the begining of the capture
+ # Seek to the beginning of the capture
self.f.seek(0)
# Read the capture in loop...
@@ -161,7 +161,7 @@ class DATADumpFile(DATADump):
# or None in case of EOF or header parsing error,
# or False in case of message parsing error or out of range.
def parse_msg(self, idx):
- # Move descriptor to the begining of requested message
+ # Move descriptor to the beginning of requested message
rc = self._seek2msg(idx)
if not rc:
log.error("Couldn't find requested message")
@@ -179,7 +179,7 @@ class DATADumpFile(DATADump):
# Should we skip some messages?
if skip is None:
- # Seek to the begining of the capture
+ # Seek to the beginning of the capture
self.f.seek(0)
else:
rc = self._seek2msg(skip)