From 3101f0df15f589e63b16d41d0dce5d18548d07ba Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 24 Jun 2023 15:21:59 -0500 Subject: [PATCH] Cleanup: Add missing () in docuumentation comments for f_file_seek(). --- 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 f9c938d..0316846 100644 --- a/level_0/f_file/c/file.h +++ b/level_0/f_file/c/file.h @@ -1858,7 +1858,7 @@ extern "C" { * F_parameter (with error bit) if a parameter is invalid. * F_failure (with error bit) on any other error. * - * @see lseek + * @see lseek() */ #ifndef _di_f_file_seek_ extern f_status_t f_file_seek(const int id, const int whence, const off_t offset, off_t * const seeked); -- 1.8.3.1