summaryrefslogtreecommitdiff
path: root/decoders/ddc.py
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2012-01-10 21:05:09 +0100
committerUwe Hermann <uwe@hermann-uwe.de>2012-01-10 21:05:09 +0100
commite97b6ef569f73e387b2597dfa144c01838c0e27c (patch)
tree3c106735b15718ab96704f06b9fb51a431d6701b /decoders/ddc.py
parent94d43b37bd34263f5ed9f7135aac5fe7413c7f07 (diff)
downloadlibsigrokdecode-e97b6ef569f73e387b2597dfa144c01838c0e27c.tar.gz
libsigrokdecode-e97b6ef569f73e387b2597dfa144c01838c0e27c.zip
srd: annotation -> annotations.
In the PDs (Python code), the 'annotation' variable/attribute is a list of annotation formats. Use the plural 'annotations' as we do for other lists such as 'inputs', 'outputs', 'probes', 'options', and so on.
Diffstat (limited to 'decoders/ddc.py')
-rw-r--r--decoders/ddc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/ddc.py b/decoders/ddc.py
index 58c74a4..b4681d0 100644
--- a/decoders/ddc.py
+++ b/decoders/ddc.py
@@ -37,7 +37,7 @@ class Decoder(sigrokdecode.Decoder):
license = 'gplv3+'
inputs = ['i2c']
outputs = ['ddc']
- annotation = [
+ annotations = [
["Byte stream", "DDC byte stream as read from display."],
]