From b0e39081756f76edaba7aa89995bb9932fdbf757 Mon Sep 17 00:00:00 2001 From: Jaehyun Kim Date: Tue, 22 Oct 2019 19:59:04 +0900 Subject: [PATCH] Correct API reference Change-Id: Ibd811b7239d981276003b0d4c23ee9872da644f1 Signed-off-by: Jaehyun Kim --- doc/wifi_manager_doc.h | 2 +- include/wifi-manager-extension.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/wifi_manager_doc.h b/doc/wifi_manager_doc.h index 721eab0..aeb805e 100755 --- a/doc/wifi_manager_doc.h +++ b/doc/wifi_manager_doc.h @@ -60,7 +60,7 @@ * \#include * * @section CAPI_NETWORK_WIFI_MANAGER_MANAGEMENT_MODULE_OVERVEW Overview - * To use Wifi Manager API, first create a wifi handle using wifi_initialize(). After that, you can obtain wifi information. + * To use Wifi Manager API, first create a wifi handle using wifi_manager_initialize(). After that, you can obtain wifi information. * You should destroy the created wifi handle if you do not need it anymore. * The Wi-Fi Manager provides functions for managing Wi-Fi. * Using the Wi-Fi Manager, you can implement features that allow the users of your application to: diff --git a/include/wifi-manager-extension.h b/include/wifi-manager-extension.h index c84c60d..a039d68 100755 --- a/include/wifi-manager-extension.h +++ b/include/wifi-manager-extension.h @@ -88,7 +88,7 @@ typedef void *wifi_manager_netlink_scan_h; * @retval #WIFI_MANAGER_ERROR_OPERATION_FAILED Operation failed * @retval #WIFI_MANAGER_ERROR_PERMISSION_DENIED Permission Denied * @retval #WIFI_MANAGER_ERROR_NOT_SUPPORTED Not supported - * @pre This API needs wifi_initialize() before use. + * @pre This API needs wifi_manager_initialize() before use. */ int wifi_manager_set_autoscan(wifi_manager_h wifi, bool autoscan); @@ -121,7 +121,7 @@ int wifi_manager_get_autoscan(wifi_manager_h wifi, bool *autoscan); * @retval #WIFI_MANAGER_ERROR_INVALID_OPERATION Invalid operation * @retval #WIFI_MANAGER_ERROR_PERMISSION_DENIED Permission Denied * @retval #WIFI_MANAGER_ERROR_NOT_SUPPORTED Not supported - * @pre This API needs wifi_initialize() before use. + * @pre This API needs wifi_manager_initialize() before use. */ int wifi_manager_set_autoscan_mode(wifi_manager_h wifi, wifi_manager_autoscan_mode_e mode); -- 2.7.4