From 371bdf451518d0b3ad38d30c6f0ccb658d4a40c9 Mon Sep 17 00:00:00 2001 From: Marcus10110 Date: Wed, 31 Jul 2024 14:04:00 -0700 Subject: [PATCH] fix minor typo in API docs. --- docs/Analyzer_API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Analyzer_API.md b/docs/Analyzer_API.md index 30b4231..fcb4fce 100644 --- a/docs/Analyzer_API.md +++ b/docs/Analyzer_API.md @@ -180,7 +180,7 @@ First, initialize all your settings variables to their default values. Second, ### Setting up each AnalyzerSettingInterface object -Ee call the member function ```SetTitleAndTooltip()```. The title will appear to the left of the input element. Note that often times you won’t need a title, but you should use one for ```Channels```. The tooltip shows up when hovering over the input element. +First, call the member function ```SetTitleAndTooltip()```. The title will appear to the left of the input element. Note that often times you won’t need a title, but you should use one for ```Channels```. The tooltip shows up when hovering over the input element. ```c++ void SetTitleAndTooltip( const char* title, const char* tooltip ); mInputChannelInterface.SetTitleAndTooltip( "Serial", "Standard Async Serial" );