From 0b12dca7fbbf8c66db7d07782953dc06a4b07e21 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Mon, 30 Nov 2020 05:43:20 +1100 Subject: [PATCH] docs: fix simple typo, underyling -> underlying There is a small typo in soundio/soundio.h. Should read `underlying` rather than `underyling`. --- soundio/soundio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soundio/soundio.h b/soundio/soundio.h index 89109a31..27191971 100644 --- a/soundio/soundio.h +++ b/soundio/soundio.h @@ -1142,7 +1142,7 @@ SOUNDIO_EXPORT int soundio_instream_begin_read(struct SoundIoInStream *instream, /// * #SoundIoErrorStreaming SOUNDIO_EXPORT int soundio_instream_end_read(struct SoundIoInStream *instream); -/// If the underyling device supports pausing, this pauses the stream and +/// If the underlying device supports pausing, this pauses the stream and /// prevents SoundIoInStream::read_callback from being called. Otherwise this returns /// #SoundIoErrorIncompatibleDevice. /// This function may be called from any thread.