diff --git a/doc/source/user_reference/invocation.rst b/doc/source/user_reference/invocation.rst index 3152b651..7679fcd6 100644 --- a/doc/source/user_reference/invocation.rst +++ b/doc/source/user_reference/invocation.rst @@ -110,9 +110,9 @@ You can use the same syntax to quickly display information about ``commands``, Show ---- -This will show detailed information about an plugin, including more in-depth -description and any parameters/configuration that are available. For example -executing :: +This will show detailed information about an plugin (workloads, targets, +instruments etc.), including a full description and any relevant +parameters/configuration that are available. For example executing :: wa show benchmarkpi @@ -138,7 +138,7 @@ will produce something like: :: number, but an approximation near the first digits of Pi over the same calculation circles the algorithms needs. - So, the number you are getting in miliseconds is the time your mobile device + So, the number you are getting in milliseconds is the time your mobile device takes to run and complete the Pi calculation algorithm resulting in a approximation of the first Pi digits. @@ -190,6 +190,8 @@ will produce something like: :: measurments or statistics for specific parts of the workload execution. +.. note:: You can also use this command to view global settings by using ``wa show settings`` + .. _create-command: diff --git a/wa/workloads/benchmarkpi/__init__.py b/wa/workloads/benchmarkpi/__init__.py index 752581ec..b48cce70 100644 --- a/wa/workloads/benchmarkpi/__init__.py +++ b/wa/workloads/benchmarkpi/__init__.py @@ -31,7 +31,7 @@ class BenchmarkPi(ApkUiautoWorkload): from the website: The whole idea behind this application is to use the same Pi calculation - algorithm on every Android Device and check how fast that proccess is. + algorithm on every Android Device and check how fast that process is. Better calculation times, conclude to faster Android devices. This way you can also check how lightweight your custom made Android build is. Or not. @@ -39,7 +39,7 @@ class BenchmarkPi(ApkUiautoWorkload): number, but an approximation near the first digits of Pi over the same calculation circles the algorithms needs. - So, the number you are getting in miliseconds is the time your mobile device + So, the number you are getting in milliseconds is the time your mobile device takes to run and complete the Pi calculation algorithm resulting in a approximation of the first Pi digits. """