summaryrefslogtreecommitdiff
path: root/gr-audio/lib/osx
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-02-03 14:58:58 +0100
committerMarcus Müller <marcus@hostalia.de>2018-02-03 14:58:58 +0100
commitb163b242e06c9f714b05f57f7180c760f021cbb6 (patch)
tree84ab2b2c624bed231e0932bfaedbfc7c4e9cc703 /gr-audio/lib/osx
parenta12b1a9ecf143d3adcb0c25ca535012445370631 (diff)
Comment typo fixing.
Luzpaz went ahead and found typos using `codespell -q 3`.
Diffstat (limited to 'gr-audio/lib/osx')
-rw-r--r--gr-audio/lib/osx/osx_impl.cc2
-rw-r--r--gr-audio/lib/osx/osx_sink.cc4
-rw-r--r--gr-audio/lib/osx/osx_source.cc2
3 files changed, 4 insertions, 4 deletions
diff --git a/gr-audio/lib/osx/osx_impl.cc b/gr-audio/lib/osx/osx_impl.cc
index d18c24c786..f3ed94c659 100644
--- a/gr-audio/lib/osx/osx_impl.cc
+++ b/gr-audio/lib/osx/osx_impl.cc
@@ -267,7 +267,7 @@ find_audio_devices
}
std::string name_buf(c_name_buf);
- // compare the retreived name with the desired one, if
+ // compare the retrieved name with the desired one, if
// provided; case insensitive.
if (device_name.length() > 0) {
diff --git a/gr-audio/lib/osx/osx_sink.cc b/gr-audio/lib/osx/osx_sink.cc
index 0b304eea3f..8682f834bf 100644
--- a/gr-audio/lib/osx/osx_sink.cc
+++ b/gr-audio/lib/osx/osx_sink.cc
@@ -371,7 +371,7 @@ namespace gr {
// set up a listener for the default output device so that if
// the device changes, this routine will be called and we can
- // internally handle this change (if/as necesary)
+ // internally handle this change (if/as necessary)
{
AudioObjectPropertyAddress property = {
@@ -1002,7 +1002,7 @@ namespace gr {
This->d_queue_sample_count -= in_number_frames;
}
- // signal that data is available, if appropraite
+ // signal that data is available, if appropriate
if (This->d_waiting_for_data) {
#if _OSX_AU_DEBUG_RENDER_
diff --git a/gr-audio/lib/osx/osx_source.cc b/gr-audio/lib/osx/osx_source.cc
index bac94fbd72..0485c5478a 100644
--- a/gr-audio/lib/osx/osx_source.cc
+++ b/gr-audio/lib/osx/osx_source.cc
@@ -1455,7 +1455,7 @@ namespace gr {
<< ", mSC = " << This->d_buffer_sample_count << std::endl;
#endif
- // signal that data is available, if appropraite
+ // signal that data is available, if appropriate
if (This->d_waiting_for_data) {
This->d_cond_data.notify_one();