diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2015-04-04 18:34:42 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2015-04-07 02:52:51 +0200 |
commit | 868fd207a7506ae2ab48d6a8755350e452d60521 (patch) | |
tree | 6c4c4c1e1cf12c2e2b5627f0af83bf330a09e58b /decoders/mxc6225xu | |
parent | c357abd198bd195cb9ea015130dc76c8c7a33651 (diff) | |
download | libsigrokdecode-868fd207a7506ae2ab48d6a8755350e452d60521.tar.gz libsigrokdecode-868fd207a7506ae2ab48d6a8755350e452d60521.zip |
Fix a bunch of typos.
Diffstat (limited to 'decoders/mxc6225xu')
-rw-r--r-- | decoders/mxc6225xu/pd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoders/mxc6225xu/pd.py b/decoders/mxc6225xu/pd.py index 8b3dcc9..962f963 100644 --- a/decoders/mxc6225xu/pd.py +++ b/decoders/mxc6225xu/pd.py @@ -97,7 +97,7 @@ class Decoder(srd.Decoder): # Bits[7:7]: INT int_val = (b >> 7) & 1 s = 'unchanged and no' if (int_val == 0) else 'changed or' - ann = 'INT = %d: Orientation %s shake event occured\n' % (int_val, s) + ann = 'INT = %d: Orientation %s shake event occurred\n' % (int_val, s) # Bits[6:5]: SH[1:0] sh = (((b >> 6) & 1) << 1) | ((b >> 5) & 1) |