From 3a1841288dc9b8e9f0b81ff01d583f3e20e56c1b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 22 Feb 2024 21:37:42 -0600 Subject: [PATCH] Cleanup: Remove out of place semi-colon from documentation comments. --- level_0/f_serialize/c/serialize.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/level_0/f_serialize/c/serialize.h b/level_0/f_serialize/c/serialize.h index 9310fb3..7d4f3a6 100644 --- a/level_0/f_serialize/c/serialize.h +++ b/level_0/f_serialize/c/serialize.h @@ -53,8 +53,8 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * Errors (with error bit) from: f_memory_array_increase_by(); - * Errors (with error bit) from: f_string_append(); + * Errors (with error bit) from: f_memory_array_increase_by(). + * Errors (with error bit) from: f_string_append(). * * @see f_memory_array_increase_by() * @see f_string_append() @@ -182,8 +182,8 @@ extern "C" { * * F_parameter (with error bit) if a parameter is invalid. * - * Errors (with error bit) from: f_string_dynamic_append(); - * Errors (with error bit) from: f_string_dynamic_append_assure(); + * Errors (with error bit) from: f_string_dynamic_append(). + * Errors (with error bit) from: f_string_dynamic_append_assure(). * * @see f_string_dynamic_append() * @see f_string_dynamic_append_assure() -- 1.8.3.1