summaryrefslogtreecommitdiff
path: root/decoders/mx25lxx05d/mx25lxx05d.py
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2012-05-08 23:53:48 +0200
committerUwe Hermann <uwe@hermann-uwe.de>2012-05-08 23:53:48 +0200
commitee3e279c7558b388410d16cbce9db6c80e9c0c67 (patch)
treea509cc444ad0af902c2b103e5a9cda315d3c42ce /decoders/mx25lxx05d/mx25lxx05d.py
parentd274e1bfc2cd0795c62ce304fa01320af16ca396 (diff)
downloadlibsigrokdecode-ee3e279c7558b388410d16cbce9db6c80e9c0c67.tar.gz
libsigrokdecode-ee3e279c7558b388410d16cbce9db6c80e9c0c67.zip
srd: Remove TODOs from annotation format names.
Also, fix minor consistency issues, cosmetics, typos.
Diffstat (limited to 'decoders/mx25lxx05d/mx25lxx05d.py')
-rw-r--r--decoders/mx25lxx05d/mx25lxx05d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/mx25lxx05d/mx25lxx05d.py b/decoders/mx25lxx05d/mx25lxx05d.py
index 80b1a65..7c8a6fd 100644
--- a/decoders/mx25lxx05d/mx25lxx05d.py
+++ b/decoders/mx25lxx05d/mx25lxx05d.py
@@ -109,7 +109,7 @@ class Decoder(srd.Decoder):
]
options = {} # TODO
annotations = [
- ['TODO', 'TODO'],
+ ['Text', 'Human-readable text'],
]
def __init__(self, **kwargs):
@@ -124,7 +124,7 @@ class Decoder(srd.Decoder):
pass
def putx(self, data):
- # Simplification, most annotations span extactly one SPI byte/packet.
+ # Simplification, most annotations span exactly one SPI byte/packet.
self.put(self.ss, self.es, self.out_ann, data)
def handle_wren(self, mosi, miso):