From: Kevin Day Date: Tue, 2 Jan 2024 16:00:27 +0000 (-0600) Subject: Cleanup: Should be using the word 'read' and not the word 'write'. X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=85eacaaaf09e9266226ea98a0f327f33fbc8dfeb;p=fll Cleanup: Should be using the word 'read' and not the word 'write'. --- diff --git a/level_2/fll_fss/c/fss/payload.h b/level_2/fll_fss/c/fss/payload.h index 4bf2658..e8c848e 100644 --- a/level_2/fll_fss/c/fss/payload.h +++ b/level_2/fll_fss/c/fss/payload.h @@ -68,12 +68,12 @@ extern "C" { * F_okay_eos on success after reaching the end of the buffer. * F_okay_stop on success after reaching stopping point. * F_data_not if buffer is empty (buffer.used is 0). - * F_data_not_eos no data to write due start location being greater than or equal to buffer size. - * F_data_not_stop no data to write due start location being greater than stop location. + * F_data_not_eos no data to read due start location being greater than or equal to buffer size. + * F_data_not_stop no data to read due start location being greater than stop location. * * F_fss_found_object_content_not (with error bit) When payload Content is missing. - * F_data_not_eos (with error bit) no data to write due start location being greater than or equal to buffer size, except that no "payload" is found. - * F_data_not_stop (with error bit) no data to write due start location being greater than stop location, except that no "payload" is found. + * F_data_not_eos (with error bit) no data to read due start location being greater than or equal to buffer size, except that no "payload" is found. + * F_data_not_stop (with error bit) no data to read due start location being greater than stop location, except that no "payload" is found. * F_okay (with error bit) on success, except that no "payload" is found. * F_okay_eos (with error bit) on success after reaching the end of the buffer, except that no "payload" is found. * F_okay_stop (with error bit) on success after reaching stopping point, except that no "payload" is found.