From f9dc68b2e56e13e5e80a99c45af8249fe6d5ed8c Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Thu, 11 Aug 2022 16:12:51 -0500 Subject: [PATCH] docs(core): cleanup in keyboardprocessor.h - fixes to api doc --- core/include/keyman/keyboardprocessor.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/core/include/keyman/keyboardprocessor.h b/core/include/keyman/keyboardprocessor.h index 3e683d0695..e396eaaad0 100644 --- a/core/include/keyman/keyboardprocessor.h +++ b/core/include/keyman/keyboardprocessor.h @@ -650,7 +650,7 @@ undefined. The returned buffer uses UTF-8 encoding. - `KM_KBP_STATUS_INVALID_ARGUMENT`: If non-optional parameters are null. - `KM_KBP_STATUS_NO_MEM`: In the event an internal memory allocation fails. ##### Parameters: -- __opts__: An opaque pointer to a state object. +- __state__: An opaque pointer to a state object. - __buf__: A pointer to the buffer to place the C string containing the JSON document into, can be null. - __space__: A pointer to a size_t variable. This variable must contain the @@ -793,7 +793,7 @@ km_kbp_keyboard_get_key_list(km_kbp_keyboard const *keyboard, Free the allocated memory belonging to a keyboard key list previously returned by `km_kbp_keyboard_get_key_list`. ##### Parameters: -- __keyboard__: A pointer to the keyboard key list to be +- __key_list__: A pointer to the keyboard key list to be disposed of. ```c @@ -1118,10 +1118,6 @@ In the event the `state` pointer is null ##### Parameters: - __state__: A pointer to the opaque state object. -- __vk__: A virtual key to be processed. -- __modifier_state__: -The combinations of modifier keys set at the time key `vk` was pressed, bitmask -from the `km_kbp_modifier_state` enum. ```c */