From 76ac2705a5a25ebc9038f8574b38597ac9a2b302 Mon Sep 17 00:00:00 2001 From: Milo Moisson Date: Mon, 20 Feb 2023 16:40:46 +0100 Subject: [PATCH] docs: wrong naming convention in struct keyword doc --- library/std/src/keyword_docs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs index e35145c4ade48..ea9d5bacc8b49 100644 --- a/library/std/src/keyword_docs.rs +++ b/library/std/src/keyword_docs.rs @@ -1568,7 +1568,7 @@ mod static_keyword {} /// /// # Style conventions /// -/// Structs are always written in CamelCase, with few exceptions. While the trailing comma on a +/// Structs are always written in PascalCase, with few exceptions. While the trailing comma on a /// struct's list of fields can be omitted, it's usually kept for convenience in adding and /// removing fields down the line. ///