From fc81477cf8a0ee0fd8494cb00bdb2c6c3c4ac1d7 Mon Sep 17 00:00:00 2001 From: Brendan Jackman Date: Wed, 26 Apr 2017 15:07:33 +0100 Subject: [PATCH] doc/instrumentation: Fix whitespace --- doc/instrumentation.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/instrumentation.rst b/doc/instrumentation.rst index c475cae..7beec79 100644 --- a/doc/instrumentation.rst +++ b/doc/instrumentation.rst @@ -28,7 +28,7 @@ Android target. # a no-op, but is included here for completeness. In [4]: i.setup() - # Find out what the instrument is capable collecting from the + # Find out what the instrument is capable collecting from the # target. In [5]: i.list_channels() Out[5]: @@ -40,7 +40,7 @@ Android target. In [6]: i.reset(sites=['exynos-therm']) # HWMON instrument supports INSTANTANEOUS collection, so invoking - # take_measurement() will return a list of measurements take from + # take_measurement() will return a list of measurements take from # each of the channels configured during reset() In [7]: i.take_measurement() Out[7]: [exynos-therm_temperature: 36.0 degrees] @@ -68,7 +68,7 @@ Instrument period of time via ``start()``, ``stop()``, and ``get_data()`` methods. - .. note:: It's possible for one instrument to support more than a single + .. note:: It's possible for one instrument to support more than a single mode. .. attribute:: Instrument.active_channels @@ -133,9 +133,9 @@ Instrument .. method:: Instrument.get_data(outfile) - Write collected data into ``outfile``. Must be called after :func:`stop()`. + Write collected data into ``outfile``. Must be called after :func:`stop()`. Data will be written in CSV format with a column for each channel and a row - for each sample. Column heading will be channel, labels in the form + for each sample. Column heading will be channel, labels in the form ``_`` (see :class:`InstrumentChannel`). The order of the coluns will be the same as the order of channels in ``Instrument.active_channels``.