From 5f7b45ee7b7d50fedf3f79917d8ba44d83140522 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 8 Jun 2025 18:48:32 -0500 Subject: [PATCH] Cleanup: Add the word 'an' to a documentation comment. --- level_0/f_file/c/file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_0/f_file/c/file.h b/level_0/f_file/c/file.h index 9d8e132..21709f8 100644 --- a/level_0/f_file/c/file.h +++ b/level_0/f_file/c/file.h @@ -1578,7 +1578,7 @@ extern "C" { * An array of polls representing all file descriptors to poll at once. * * Warning: The max array length for used is limited to nfds_t which might be different from f_number_unsigned_t. - * The nfds_t is often either uint32_t or an uint64_t. + * The nfds_t is often either an uint32_t or an uint64_t. * The f_number_unsigned_t is often an uint64_t. * * When a file descriptor (polls.array[].fd) is set to -1, then the file descriptor is ignored and the return events (polls.array[].revents) is set to 0. -- 1.8.3.1