From 85eacaaaf09e9266226ea98a0f327f33fbc8dfeb Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 2 Jan 2024 10:00:27 -0600 Subject: [PATCH] Cleanup: Should be using the word 'read' and not the word 'write'. --- level_2/fll_fss/c/fss/payload.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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. -- 1.8.3.1