From 082ffb32ccc4ad9ce4073ffd5dad92712d1d30b4 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 23 Jun 2020 14:51:29 +0100 Subject: [PATCH] fw/target: Fix typos --- wa/framework/target/assistant.py | 4 ++-- wa/framework/target/descriptor.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wa/framework/target/assistant.py b/wa/framework/target/assistant.py index 5ce3957c7..3872e7baf 100644 --- a/wa/framework/target/assistant.py +++ b/wa/framework/target/assistant.py @@ -62,10 +62,10 @@ class AndroidAssistant(object): Logcat buffer on android is of limited size and it cannot be adjusted at run time. Depending on the amount of logging activity, - the buffer may not be enought to capture comlete trace for a + the buffer may not be enough to capture complete trace for a workload execution. For those situations, logcat may be polled periodically during the course of the run and stored in a - temporary locaiton on the host. Setting the value of the poll + temporary location on the host. Setting the value of the poll period enables this behavior. """), ] diff --git a/wa/framework/target/descriptor.py b/wa/framework/target/descriptor.py index ff9f829c4..f90bf6384 100644 --- a/wa/framework/target/descriptor.py +++ b/wa/framework/target/descriptor.py @@ -661,7 +661,7 @@ def _override_params(self, params, overrides): # pylint: disable=no-self-use for override in overrides: if override.name in param_map: param_map[override.name] = override - # Return the list of overriden parameters + # Return the list of overridden parameters return list(param_map.values()) def _get_item(self, item_tuple):