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 {} 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", ); ```