From 582ddd5ffb9884d6eb37355656357b1e764fc4b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nagy-Egri=20M=C3=A1t=C3=A9=20Ferenc?= Date: Tue, 7 Nov 2023 18:35:08 +0100 Subject: [PATCH] Fix typo Co-authored-by: Ronan Keryell --- lib/Utils.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Utils.md b/lib/Utils.md index 1959ce12..e15146f8 100644 --- a/lib/Utils.md +++ b/lib/Utils.md @@ -213,4 +213,4 @@ std::string read_exe_relative_text_file( cl_int* const error = nullptr); ``` -These functions read a text file into memory, where `filename` is evaluated relative to the executable currently running. The C-version contains a terminating null and takes an optional pointer to `length` by which the length my be returned, potentially saving a subsequent call to `strlen`. The function hands ownership of the allocated storage to the caller. +These functions read a text file into memory, where `filename` is evaluated relative to the executable currently running. The C-version contains a terminating null and takes an optional pointer to `length` by which the length will be returned, potentially saving a subsequent call to `strlen`. The function hands ownership of the allocated storage to the caller.