Fix warnings in docs, we're not using terms or keywords

This commit is contained in:
wiredfool 2016-04-19 07:29:59 -07:00
parent c5a801b836
commit 1762bff3af
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ To get the number and names of bands in an image, use the
Modes
-----
The :term:`mode` of an image defines the type and depth of a pixel in the
The ``mode`` of an image defines the type and depth of a pixel in the
image. The current release supports the following standard modes:
* ``1`` (1-bit pixels, black and white, stored with one pixel per byte)

View File

@ -81,13 +81,13 @@ Bitwise operators dont work on floating point images.
Logical Operators
^^^^^^^^^^^^^^^^^
Logical operators like :keyword:`and`, :keyword:`or`, and :keyword:`not` work
Logical operators like ``and``, ``or``, and ``not`` work
on entire images, rather than individual pixels.
An empty image (all pixels zero) is treated as false. All other images are
treated as true.
Note that :keyword:`and` and :keyword:`or` return the last evaluated operand,
Note that ``and`` and ``or`` return the last evaluated operand,
while not always returns a boolean value.
Built-in Functions