fix minor typo in API docs.

This commit is contained in:
Marcus10110
2024-07-31 14:04:00 -07:00
parent 432743b060
commit 371bdf4515

View File

@@ -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 wont 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 wont 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" );