summaryrefslogtreecommitdiffstats
path: root/examples/audiolevels
diff options
context:
space:
mode:
Diffstat (limited to 'examples/audiolevels')
-rw-r--r--examples/audiolevels/doc/src/audiolevels.qdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/audiolevels/doc/src/audiolevels.qdoc b/examples/audiolevels/doc/src/audiolevels.qdoc
index 3d392487..1aef9174 100644
--- a/examples/audiolevels/doc/src/audiolevels.qdoc
+++ b/examples/audiolevels/doc/src/audiolevels.qdoc
@@ -57,7 +57,7 @@
\snippet ../examples/audiolevels/audiolevelsiodevice.cpp 1
- The \c resolution constant indicates the sample rate, e.g. value 8 means every eighth
+ The \c resolution constant indicates the sample rate, for example, value 8 means every eighth
byte from audio input is visualized. This is necessary to make the data readable, as it would
otherwise make the graph scroll too fast.
@@ -71,7 +71,7 @@
\snippet ../examples/audiolevels/audiolevelsiodevice.cpp 2
- We use a couple of techniques here to improve performance. First off, we reuse
+ We use a couple of techniques here to improve performance. First, we reuse
the existing data array, as this allows us to avoid any extra memory allocations in our
application code. This also means the data array dimensions do not change, which further
improves efficiency in the bar graph renderer.