diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-11 00:51:49 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-11 00:51:49 +0100 |
commit | ecc3ecddf3101292015c823d110e3668004e8c16 (patch) | |
tree | ef0f8f296fbc72c4706786dc560bb4bdf5df690e /examples | |
parent | m (diff) | |
download | blueshift-ecc3ecddf3101292015c823d110e3668004e8c16.tar.gz blueshift-ecc3ecddf3101292015c823d110e3668004e8c16.tar.bz2 blueshift-ecc3ecddf3101292015c823d110e3668004e8c16.tar.xz |
fix doc
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | examples/crtc-searching | 4 | ||||
-rw-r--r-- | examples/lisp-esque | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/crtc-searching b/examples/crtc-searching index 521ffc5..c7be89f 100644 --- a/examples/crtc-searching +++ b/examples/crtc-searching @@ -40,7 +40,7 @@ parser = ArgParser('Colour temputare controller', parser.add_argumentless(['-h', '-?', '--help'], 0, 'Print this help information') parser.add_argumented(['-n', '--name'], 0, 'NAME', 'Select output by name') -parser.add_argumented(['-e', '--edid'], 0, 'EDID', 'Select output by monitor extended display information data') +parser.add_argumented(['-e', '--edid'], 0, 'EDID', 'Select output by monitor extended display identification data') parser.add_argumented(['-s', '--size'], 0, 'WIDTH_MM:HEIGHT_MM', 'Select output by monitor size') parser.parse(conf_opts) @@ -60,7 +60,7 @@ if parser.opts['--name'] is not None: for name in parser.opts['--name']: outputs += screens.find_by_name(name) -# Find CRTC:s by monitor extended display infomation data. +# Find CRTC:s by monitor extended display identification data. if parser.opts['--edid'] is not None: for edid in parser.opts['--edid']: outputs += screens.find_by_edid(edid) diff --git a/examples/lisp-esque b/examples/lisp-esque index 53fd63a..f08c576 100644 --- a/examples/lisp-esque +++ b/examples/lisp-esque @@ -169,7 +169,7 @@ def _size(mods, args): def _edid(mods, args): ''' - Find monitors by extended display information data + Find monitors by extended display identification data @param mods:[]|[str] Optionally the number of monitors to list @param args:list<str> EDID of outputs' monitors |