summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-11 00:51:49 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-11 00:51:49 +0100
commitecc3ecddf3101292015c823d110e3668004e8c16 (patch)
treeef0f8f296fbc72c4706786dc560bb4bdf5df690e
parentm (diff)
downloadblueshift-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-searching4
-rw-r--r--examples/lisp-esque2
-rw-r--r--info/blueshift.texinfo2
3 files changed, 4 insertions, 4 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
diff --git a/info/blueshift.texinfo b/info/blueshift.texinfo
index cf380ef..c28334a 100644
--- a/info/blueshift.texinfo
+++ b/info/blueshift.texinfo
@@ -853,7 +853,7 @@ they are used or not (if @code{status} is
@item find_by_edid(name)
Matches outputs by monitor extended display
-information data.
+identification data.
@end table