]> sigrok.org Git - libsigrokdecode.git/commitdiff
Cosmetics, fix typos.
authorUwe Hermann <redacted>
Mon, 7 Jan 2013 21:30:17 +0000 (22:30 +0100)
committerUwe Hermann <redacted>
Sat, 12 Jan 2013 23:49:23 +0000 (00:49 +0100)
configure.ac
decoders/avr_isp/pd.py
decoders/lm75/pd.py
sigrokdecode.h.in

index 56dce1047496148521bfd29216b880d6562d26b0..e024014668a7952a763692f8aef34fc36e929971 100644 (file)
@@ -102,7 +102,8 @@ case "$build" in
        # On Darwin, Macports has python3.x-config, fink has python3-config.
        # Mac OS X (Snow Leopard) ships with 'python-config' per default, but
        # that's Python 2.x, so not useful for us.
-       # Everything else is untested, we just hope 'PYTHON3_CONFIG' works.
+       # Everything else is untested, we just hope some $PYTHON3_CONFIG
+       # (i.e., any of the tools we check for above) is available.
        if test -n "$PYTHON3_CONFIG"; then
                CPPFLAGS_PYTHON="$($PYTHON3_CONFIG --includes)"
                LDFLAGS_PYTHON="$($PYTHON3_CONFIG --ldflags)"
index 9ecc2801a184d1a7a863b5be4f9dbf5763d018d2..68be0ca4a7708363bf01d5e778ff24ce2586ffbe 100644 (file)
@@ -29,7 +29,7 @@ class Decoder(srd.Decoder):
     api_version = 1
     id = 'avr_isp'
     name = 'AVR ISP'
-    longname = 'AVR in-system programming'
+    longname = 'AVR In-System Programming'
     desc = 'Protocol for in-system programming Atmel AVR MCUs.'
     license = 'gplv2+'
     inputs = ['spi', 'logic']
index 9d2f0ab242bb48bcbfbfb1dfe9e696b3b04f6ced..86d3950b282f125ffa0fd26c73ef845b85a5fbb7 100644 (file)
@@ -46,7 +46,7 @@ class Decoder(srd.Decoder):
     id = 'lm75'
     name = 'LM75'
     longname = 'National LM75'
-    desc = 'National LM75 (and compatibles) temperature sensor protocol.'
+    desc = 'National LM75 (and compatibles) temperature sensor.'
     license = 'gplv2+'
     inputs = ['i2c']
     outputs = ['lm75']
index 6b05b64db622fc2f61ccba9b1bf5b7be3ac74c62..033e30ee4652e557097c2facd5f62998eebde4db 100644 (file)
@@ -99,7 +99,7 @@ extern "C" {
  * Use SRD_API to mark public API symbols, and SRD_PRIV for private symbols.
  *
  * Variables and functions marked 'static' are private already and don't
- * need SR_PRIV. However, functions which are not static (because they need
+ * need SRD_PRIV. However, functions which are not static (because they need
  * to be used in other libsigrokdecode-internal files) but are also not
  * meant to be part of the public libsigrokdecode API, must use SRD_PRIV.
  *