From bda37c11618b84ed267835d48c7c8adeddf1db06 Mon Sep 17 00:00:00 2001 From: Sujan Miya Date: Mon, 3 Nov 2025 20:30:52 +0600 Subject: [PATCH] [skip ci] Fix typo in CODING_STANDARDS.md (GH-20364) --- CODING_STANDARDS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODING_STANDARDS.md b/CODING_STANDARDS.md index c599194ed50..47b76717c83 100644 --- a/CODING_STANDARDS.md +++ b/CODING_STANDARDS.md @@ -276,7 +276,7 @@ rewritten to comply with these rules. 1. The length of constant string literals should be calculated via ``strlen()`` instead of using ``sizeof()-1`` as it is clearer and any modern compiler - will optimize it away. Legacy usages of the latter style exists within the + will optimize it away. Legacy usages of the latter style exist within the codebase but should not be refactored, unless larger refactoring around that code is taking place.