Correct wrong expression on header file 49/244949/1 submit/tizen/20200928.082017
authorwn.jang <wn.jang@samsung.com>
Mon, 28 Sep 2020 07:55:10 +0000 (16:55 +0900)
committerwn.jang <wn.jang@samsung.com>
Mon, 28 Sep 2020 07:55:10 +0000 (16:55 +0900)
Change-Id: I20ec5e27df90f3d249662b3ce72106161e53b105

include/voice_control_command.h
include/voice_control_manager.h

index 06b899a..d5fcfc2 100644 (file)
@@ -337,7 +337,7 @@ int vc_cmd_set_command(vc_cmd_h vc_command, const char* command);
 /**
  * @brief Gets command.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @remark If the function succeeds, @a command must be released with free() by you if they are not NULL.
+ * @remarks If the function succeeds, @a command must be released with free() by you if they are not NULL.
  * @param[in] vc_command The command handle
  * @param[out] command The command text
  * @return @c 0 on success, 
@@ -354,7 +354,7 @@ int vc_cmd_get_command(vc_cmd_h vc_command, char** command);
 /**
  * @brief Gets the unfixed command.
  * @since_tizen 3.0
- * @remark If the function succeeds, the @a command must be released with free() if it is not NULL.
+ * @remarks If the function succeeds, the @a command must be released with free() if it is not NULL.
  *         If the command of the given @a vc_command is NULL (@a vc_command is NOT NULL), @a command will be also NULL.
  *         This function should be used for commands which have non-fixed format.
  * @param[in] vc_command The command handle
@@ -372,7 +372,7 @@ int vc_cmd_get_unfixed_command(vc_cmd_h vc_command, char** command);
 /**
  * @brief Sets command type.
  * @since_tizen @if MOBILE 2.4 @elseif WEARABLE 3.0 @endif
- * @remark If you do not set the command type, the default value is @c -1.
+ * @remarks If you do not set the command type, the default value is @c -1.
  *         You should set type if command is valid
  * @param[in] vc_command The command handle
  * @param[in] type The command type
@@ -406,7 +406,7 @@ int vc_cmd_get_type(vc_cmd_h vc_command, int* type);
 /**
  * @brief Sets the command format.
  * @since_tizen 3.0
- * @remark The default format is #VC_COMMAND_FORMAT_FIXED.
+ * @remarks The default format is #VC_COMMAND_FORMAT_FIXED.
  * @param[in] vc_command The command handle
  * @param[in] format The command format
  * @return @c 0 on success, 
@@ -423,7 +423,7 @@ int vc_cmd_set_format(vc_cmd_h vc_command, int format);
 /**
  * @brief Gets the command format.
  * @since_tizen 3.0
- * @remark The default format is #VC_COMMAND_FORMAT_FIXED.
+ * @remarks The default format is #VC_COMMAND_FORMAT_FIXED.
  * @param[in] vc_command The command handle
  * @param[out] format The command format
  * @return @c 0 on success, 
index 49defd3..c728910 100644 (file)
@@ -745,7 +745,7 @@ int vc_mgr_get_audio_type(char **audio_id);
  *
  * @pre The state should be #VC_STATE_READY and the service state should be #VC_SERVICE_STATE_READY.
  *
- * @see vc_mgr_set_recognition_mode()
+ * @see vc_mgr_get_recognition_mode()
  */
 int vc_mgr_set_recognition_mode(vc_recognition_mode_e mode);
 
@@ -768,7 +768,7 @@ int vc_mgr_set_recognition_mode(vc_recognition_mode_e mode);
  *
  * @pre The state should be #VC_STATE_READY.
  *
- * @see vc_mgr_get_recognition_mode()
+ * @see vc_mgr_set_recognition_mode()
  */
 int vc_mgr_get_recognition_mode(vc_recognition_mode_e *mode);