From 8932d321de6aef942f38f6ebc7e0af9952c4d2e4 Mon Sep 17 00:00:00 2001 From: Abhimanyu Swami Date: Thu, 31 Oct 2019 16:22:52 +0530 Subject: [PATCH] Resolved Native API Reference issues for liboauth2 Change-Id: Ic9ea8d5a7c3ad04e223f3a1ef65d8b2a6e26f68c Signed-off-by: Abhimanyu Swami --- include/oauth2_manager.h | 4 ++-- include/oauth2_request.h | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/include/oauth2_manager.h b/include/oauth2_manager.h index 78b855a..a702f5d 100755 --- a/include/oauth2_manager.h +++ b/include/oauth2_manager.h @@ -52,7 +52,7 @@ extern "C" { typedef struct oauth2_manager_s *oauth2_manager_h; /** - * @brief Creates oauth2_manager_h handle. + * @brief Creates #oauth2_manager_h handle. * @remarks The @a handle must be released using oauth2_manager_destroy(). * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -69,7 +69,7 @@ typedef struct oauth2_manager_s *oauth2_manager_h; OAUTH2_API int oauth2_manager_create(oauth2_manager_h *handle); /** - * @brief Destroys oauth2_manager_h handle. + * @brief Destroys #oauth2_manager_h handle. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * * @param[in] handle The oauth2 manager handle diff --git a/include/oauth2_request.h b/include/oauth2_request.h index b71f381..04d2128 100755 --- a/include/oauth2_request.h +++ b/include/oauth2_request.h @@ -44,7 +44,7 @@ extern "C" { typedef struct oauth2_request_s *oauth2_request_h; /** - * @brief Creates oauth2_request_h handle. + * @brief Creates #oauth2_request_h handle. * @details The handle must be freed via oauth2_request_destroy(). * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * @@ -60,7 +60,7 @@ typedef struct oauth2_request_s *oauth2_request_h; OAUTH2_API int oauth2_request_create(oauth2_request_h *handle); /** - * @brief Destroys oauth2_request_h handle. + * @brief Destroys #oauth2_request_h handle. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif * * @param[in] handle The oauth2_request handle to destroy @@ -394,7 +394,6 @@ OAUTH2_API int oauth2_request_get_redirection_url(oauth2_request_h handle, char /** * @brief Gets refresh token end point URL. * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif - * @privlevel public * * @remarks You must not release @a url using free(). * @param[in] handle The request handle -- 2.7.4