diff options
author | mjz19910 <matthias291999@gmail.com> | 2022-01-07 05:04:05 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-01-07 15:44:42 +0100 |
commit | 10ec98dd3852369834b6367da5615ec2a21846a3 (patch) | |
tree | abbff764b730536f3595cae937f7b8ca86b44e2e /Documentation/Patterns.md | |
parent | 168063819d009b34d43286c0367129592809a79d (diff) | |
download | serenity-10ec98dd3852369834b6367da5615ec2a21846a3.zip |
Everywhere: Fix spelling mistakes
Diffstat (limited to 'Documentation/Patterns.md')
-rw-r--r-- | Documentation/Patterns.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Patterns.md b/Documentation/Patterns.md index 9c8f37571a..9bc4fefae3 100644 --- a/Documentation/Patterns.md +++ b/Documentation/Patterns.md @@ -234,7 +234,7 @@ See: https://en.cppreference.com/w/cpp/utility/source_location `AK::SourceLocation` is the implementation of this feature in SerenityOS. It's become the idiomatic way to capture the location when adding extra debugging instrumentation, without resorting to -litering the code with preprocessor macros. +littering the code with preprocessor macros. To use it, you can add the `AK::SourceLocation` as a default argument to any function, using `AK::SourceLocation::current()` to initialize the |