aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Wu <85952307+robertwu1@users.noreply.github.com>2023-01-25 22:59:20 +0000
committerGitHub <noreply@github.com>2023-01-25 14:59:20 -0800
commit31a61c0e0e687c16603e186fac59fcdc77809e7f (patch)
tree9a38471a554fd3246f88062276ac0b1f4148653d
parent1571780fcecd3f3960eba80d974dc11724aae69b (diff)
downloadoboe-31a61c0e0e687c16603e186fac59fcdc77809e7f.tar.gz
Fix incorrect param in setDataCallback (#1697)
-rw-r--r--include/oboe/AudioStreamBuilder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/oboe/AudioStreamBuilder.h b/include/oboe/AudioStreamBuilder.h
index 033bb336..5c7ac4b6 100644
--- a/include/oboe/AudioStreamBuilder.h
+++ b/include/oboe/AudioStreamBuilder.h
@@ -357,7 +357,7 @@ public:
* We pass a shared_ptr so that the sharedDataCallback object cannot be deleted
* before the stream is deleted.
*
- * @param dataCallback
+ * @param sharedDataCallback
* @return pointer to the builder so calls can be chained
*/
AudioStreamBuilder *setDataCallback(std::shared_ptr<AudioStreamDataCallback> sharedDataCallback) {