From 79b1cf12605a46b36f5607e488d284ffb779c7a6 Mon Sep 17 00:00:00 2001 From: Mangal Kushwah Date: Tue, 13 Feb 2024 08:17:48 +0100 Subject: [PATCH] Update docs/handbook/guidelines/best_practice_c_cpp.md --- docs/handbook/guidelines/best_practice_c_cpp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/handbook/guidelines/best_practice_c_cpp.md b/docs/handbook/guidelines/best_practice_c_cpp.md index 135c9d49..58b45061 100644 --- a/docs/handbook/guidelines/best_practice_c_cpp.md +++ b/docs/handbook/guidelines/best_practice_c_cpp.md @@ -55,7 +55,7 @@ Notes relating to fixed size char buffer use: - When performing low level operations on byte arrays, it's preferable to calculate sizes and use `memcpy` to construct the buffer. - Complex logic to construct fixed size char buffers should assert the - final size fits withing buffer size. + final size fits within buffer size. ### Exceptions -- 2.30.2