From c5af1bcef99041a4e7ec70706b53de11eb8dee38 Mon Sep 17 00:00:00 2001 From: apio Date: Mon, 24 Jul 2023 11:57:47 +0200 Subject: [PATCH] libc: Fix typo in fopen description --- libc/include/stdio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/include/stdio.h b/libc/include/stdio.h index 4a955650..51c4b9bd 100644 --- a/libc/include/stdio.h +++ b/libc/include/stdio.h @@ -54,7 +54,7 @@ extern "C" int fflush(FILE*); - /* Open a file and binds a stream to it. */ + /* Open a file and bind a stream to it. */ FILE* fopen(const char* path, const char* mode); /* Bind a stream to a file descriptor. */