From 2c170c6169071c8b58759232cfc588a0d8abdc55 Mon Sep 17 00:00:00 2001 From: Erik <143648606+esal22@users.noreply.github.com> Date: Wed, 6 Dec 2023 09:25:55 -0600 Subject: [PATCH] Update Analyzer_API.md --- docs/Analyzer_API.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/Analyzer_API.md b/docs/Analyzer_API.md index 717fafc..0978e18 100644 --- a/docs/Analyzer_API.md +++ b/docs/Analyzer_API.md @@ -504,9 +504,9 @@ Frame frame = GetFrame( frame_index ); Bubbles can display different length strings, depending on how much room is available. You should generate several results strings. The simplest might simply indicate the type of contents (‘D’ for data, for example), longer ones might indicate the full number (“0xFF01”), and longer ones might be very verbose (“Left Channel Audio Data: 0xFF01”). -To provide strings to the caller, use the ```AddStringResult``` function. This will make sure that the strings persist after the function has returned. Always call ```ClearResultStrings``` before adding any string results. +To provide strings to the caller, use the ```AddResultString``` function. This will make sure that the strings persist after the function has returned. Always call ```ClearResultStrings``` before adding any string results. -Note that to easily concatenate multiple strings, simply provide ```AddStringResult``` with more strings. +Note that to easily concatenate multiple strings, simply provide ```AddResultString``` with more strings. ```c++ void ClearResultStrings(); @@ -1425,4 +1425,4 @@ U32 SpiSimulationDataGenerator::GenerateSimulationData( U64 largest_sample_reque *simulation_channels = mSpiSimulationChannels.GetArray(); return mSpiSimulationChannels.GetCount(); } -``` \ No newline at end of file +```