@@ -153,15 +153,15 @@ LibMK_Instruction* libmk_create_instruction();
153153/** @brief Create a new instruction to set the full keyboard color
154154 *
155155 * @param c: RGB color triplet that is copied to the instruction.
156- * @returns: Pointer to single LibMK_Instruction. Duration may be set
156+ * @returns Pointer to single LibMK_Instruction. Duration may be set
157157 * by the caller.
158158 */
159159LibMK_Instruction * libmk_create_instruction_full (unsigned char c [3 ]);
160160
161161/** @brief Create a new instruction to set all leds individually
162162 *
163163 * @param c: RGB color matrix that is copied to the instruction.
164- * @returns: Pointer to single LibMK_Instruction. Duration may be set
164+ * @returns Pointer to single LibMK_Instruction. Duration may be set
165165 * by the caller.
166166 */
167167LibMK_Instruction * libmk_create_instruction_all (
@@ -178,13 +178,13 @@ LibMK_Instruction* libmk_create_instruction_all(
178178 * instruction execution itself.
179179 * @param n: Number of instructions in the linked list to be built.
180180 *
181- * @returns: Pointer to linked list of LibMK_Instruction.
181+ * @returns Pointer to linked list of LibMK_Instruction.
182182 */
183183LibMK_Instruction * libmk_create_instruction_flash (
184184 unsigned char c [3 ], unsigned int delay , unsigned char n );
185185
186186
187- /** @brief: Create a new instruction to set the color of a single key
187+ /** @brief Create a new instruction to set the color of a single key
188188 *
189189 * Overridden by a LIBMK_INSTR_FULL, just as in synchronous keyboard
190190 * control. When changing six or more keys, using a LIBMK_INSTR_ALL is
@@ -194,12 +194,12 @@ LibMK_Instruction* libmk_create_instruction_flash(
194194 * @param column: Column coordinate of the key
195195 * @param c: RGB triplet to be copied to the instruction
196196 *
197- * @returns: Single LibMK_Instruction, duration may be set by the user.
197+ * @returns Single LibMK_Instruction, duration may be set by the user.
198198 */
199199LibMK_Instruction * libmk_create_instruction_single (
200200 unsigned char row , unsigned char column , unsigned char c [3 ]);
201201
202- /** @brief: Free a single LibMK_Instruction
202+ /** @brief Free a single LibMK_Instruction
203203 *
204204 * The instruction is expected to longer be part of a linked list. This
205205 * instruction is automatically called after an instruction has been
@@ -209,5 +209,5 @@ LibMK_Instruction* libmk_create_instruction_single(
209209 */
210210void libmk_free_instruction (LibMK_Instruction * i );
211211
212- /** @brief: Internal Function. Execute a single instruction. NOT THREAD-SAFE. */
212+ /** @brief Internal Function. Execute a single instruction. NOT THREAD-SAFE. */
213213LibMK_Result libmk_exec_instruction (LibMK_Handle * h , LibMK_Instruction * i );
0 commit comments