[C API Docs ] Address doxygen errors (#20714)

### Description
Make C API compliant with Doxygen expectations

### Motivation and Context
Doc workflow is failing.
This commit is contained in:
Dmitri Smirnov 2024-05-17 23:23:20 -07:00 committed by GitHub
parent 2e7de54565
commit bd7a0fb377
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1847,8 +1847,8 @@ struct OrtApi {
* and not present, the function returns success and out is set to nullptr.
*
* \param[in] context ::OrtKernelContext instance
* \param[in] input index. See KernelContext_GetInputCount for boundaries check.
* \param[in, out] returns a ptr to OrtValue if the input is present
* \param[in] index See KernelContext_GetInputCount for boundaries check.
* \param[out] out OrtValue if the input is present otherwise is set nullptr
*
* \snippet{doc} snippets.dox OrtStatus Return Value
*/
@ -1861,8 +1861,10 @@ struct OrtApi {
* and not present, the function returns success and out is set to nullptr.
*
* \param[in] context ::OrtKernelContext instance
* \param[in] output index. See KernelContext_GetOutputCount for boundaries check.
* \param[in, out] returns a ptr to OrtValue if the output is present
* \param[in] index See KernelContext_GetOutputCount for boundaries check.
* \param[in] dim_values output dimensions
* \param[in] dim_count number of dimensions
* \param[out] out a ptr to OrtValue to output otherwise set to nullptr
*
* \snippet{doc} snippets.dox OrtStatus Return Value
*/