1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-02 03:12:34 +01:00

Fix a frequently repeated typo

This commit is contained in:
Per Inge Mathisen
2016-07-08 10:16:47 +02:00
parent c8a735e298
commit 12a78ce291
5 changed files with 9 additions and 9 deletions

View File

@@ -18,14 +18,14 @@ from wlauto.core import instrumentation
def instrument_is_installed(instrument):
"""Returns ``True`` if the specified instrument is installed, and ``False``
other wise. The insturment maybe specified either as a name or a subclass (or
other wise. The instrument maybe specified either as a name or a subclass (or
instance of subclass) of :class:`wlauto.core.Instrument`."""
return instrumentation.is_installed(instrument)
def instrument_is_enabled(instrument):
"""Returns ``True`` if the specified instrument is installed and is currently
enabled, and ``False`` other wise. The insturment maybe specified either
enabled, and ``False`` other wise. The instrument maybe specified either
as a name or a subclass (or instance of subclass) of
:class:`wlauto.core.Instrument`."""
return instrumentation.is_enabled(instrument)

View File

@@ -112,10 +112,10 @@ class Daq(Instrument):
Parameter('server_host', kind=str, default='localhost',
global_alias='daq_server_host',
description='The host address of the machine that runs the daq Server which the '
'insturment communicates with.'),
'instrument communicates with.'),
Parameter('server_port', kind=int, default=45677,
global_alias='daq_server_port',
description='The port number for daq Server in which daq insturment communicates '
description='The port number for daq Server in which daq instrument communicates '
'with.'),
Parameter('device_id', kind=str, default='Dev1',
global_alias='daq_device_id',

View File

@@ -348,7 +348,7 @@ class EnergyModelInstrument(Instrument):
desicription = """
Generates a power mode for the device based on specified workload.
This insturment will execute the workload specified by the agenda (currently, only ``sysbench`` is
This instrument will execute the workload specified by the agenda (currently, only ``sysbench`` is
supported) and will use the resulting performance and power measurments to generate a power mode for
the device.