From 2657e7c1c51ac21f6756c71a60d2b06bacb27cd1 Mon Sep 17 00:00:00 2001 From: Don Turner Date: Tue, 28 Nov 2017 18:10:43 +0000 Subject: [PATCH] More documentation fixes --- GettingStarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GettingStarted.md b/GettingStarted.md index c29f9f521..df87ae672 100644 --- a/GettingStarted.md +++ b/GettingStarted.md @@ -79,7 +79,7 @@ Open the stream: oboe::Stream *stream; oboe::Result result = builder.openStream(&stream); -Check the result to make sure the stream was opened successfully. Oboe has many convenience methods for converting its types into human-readable strings, they all start with `Oboe_convert`: +Check the result to make sure the stream was opened successfully. Oboe has many convenience methods for converting its types into human-readable strings, they all start with `oboe::convert`: if (result != Result::OK){ LOGE("Failed to create stream. Error: %s", oboe::convertResultToText(result));