From 7899bc463445ccefa9db47b6acaca5f5adbd6b62 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sat, 19 Sep 2026 21:06:03 -0400 Subject: [PATCH 1/2] spelling: frequency Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/guidelines/libs/interop/M-IMPL-ASREF.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guidelines/libs/interop/M-IMPL-ASREF.md b/src/guidelines/libs/interop/M-IMPL-ASREF.md index 784328c..eba4396 100644 --- a/src/guidelines/libs/interop/M-IMPL-ASREF.md +++ b/src/guidelines/libs/interop/M-IMPL-ASREF.md @@ -23,7 +23,7 @@ fn send_network(x: impl AsRef<[u8]>) {} // Further analysis needed. In these cases the function wants // ownership of some `String` or `Vec`. If those are -// "low freqency, low volume" functions `AsRef` has better ergonomics, +// "low frequency, low volume" functions `AsRef` has better ergonomics, // otherwise accepting a `String` or `Vec` will have better // performance. fn new_instance(x: impl AsRef) -> HoldsString {} From d8c25fc13ffa87a0cef5ede6e44d9aa0f6d93ac5 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Sat, 19 Sep 2026 21:08:40 -0400 Subject: [PATCH 2/2] spelling: successfully Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/guidelines/universal/M-LOG-STRUCTURED.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/guidelines/universal/M-LOG-STRUCTURED.md b/src/guidelines/universal/M-LOG-STRUCTURED.md index 619b57d..e8e01b8 100644 --- a/src/guidelines/universal/M-LOG-STRUCTURED.md +++ b/src/guidelines/universal/M-LOG-STRUCTURED.md @@ -42,7 +42,7 @@ Use hierarchical dot-notation: `..` event!( Level::INFO, file.path = file_path, - "file {{file.path}} processed succesfully", + "file {{file.path}} processed successfully", ); // Good: Named events @@ -50,7 +50,7 @@ event!( name: "file.processing.success", // event identifier Level::INFO, file.path = file_path, - "file {{file.path}} processed succesfully", + "file {{file.path}} processed successfully", ); ```