diff options
| author | 2018-09-04 10:49:06 -0400 | |
|---|---|---|
| committer | 2018-09-04 10:49:08 -0400 | |
| commit | 6ef84f1c4c6ca66ec28be210ef14913187af4424 (patch) | |
| tree | dc16d7523a1785a0bd35f79cc53fdbdc6b6e7bcf /src/common/logging/text_formatter.h | |
| parent | common/logging/filter: Replace C-style case with C++ static_cast (diff) | |
| download | yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar.gz yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.tar.xz yuzu-6ef84f1c4c6ca66ec28be210ef14913187af4424.zip | |
common/logging: Amend documentation comments
Multi-line doc comments still need the '<' after the ///, otherwise it's
treated as a regular comment and makes the original doc comment broken
in viewers, IDEs, etc. While we're at it, also fix some typos in the
comments.
Diffstat (limited to 'src/common/logging/text_formatter.h')
| -rw-r--r-- | src/common/logging/text_formatter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/text_formatter.h b/src/common/logging/text_formatter.h index 9609cec7c..b6d9e57c8 100644 --- a/src/common/logging/text_formatter.h +++ b/src/common/logging/text_formatter.h | |||
| @@ -15,6 +15,6 @@ struct Entry; | |||
| 15 | std::string FormatLogMessage(const Entry& entry); | 15 | std::string FormatLogMessage(const Entry& entry); |
| 16 | /// Formats and prints a log entry to stderr. | 16 | /// Formats and prints a log entry to stderr. |
| 17 | void PrintMessage(const Entry& entry); | 17 | void PrintMessage(const Entry& entry); |
| 18 | /// Prints the same message as `PrintMessage`, but colored acoording to the severity level. | 18 | /// Prints the same message as `PrintMessage`, but colored according to the severity level. |
| 19 | void PrintColoredMessage(const Entry& entry); | 19 | void PrintColoredMessage(const Entry& entry); |
| 20 | } // namespace Log | 20 | } // namespace Log |