summaryrefslogtreecommitdiffstats
path: root/src/common/logging/text_formatter.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-04 18:18:00 +0200
committerGitHub <noreply@github.com>2018-09-04 18:18:00 +0200
commitdda4b5e89ee428d4e872246459db308b2701eef1 (patch)
tree2bb15d02d5da24102523bd0567d56d3d609b5cf6 /src/common/logging/text_formatter.h
parentMerge pull request #1237 from degasus/optimizations (diff)
parentcommon/logging: Amend documentation comments (diff)
downloadyuzu-dda4b5e89ee428d4e872246459db308b2701eef1.tar
yuzu-dda4b5e89ee428d4e872246459db308b2701eef1.tar.gz
yuzu-dda4b5e89ee428d4e872246459db308b2701eef1.tar.bz2
yuzu-dda4b5e89ee428d4e872246459db308b2701eef1.tar.lz
yuzu-dda4b5e89ee428d4e872246459db308b2701eef1.tar.xz
yuzu-dda4b5e89ee428d4e872246459db308b2701eef1.tar.zst
yuzu-dda4b5e89ee428d4e872246459db308b2701eef1.zip
Diffstat (limited to 'src/common/logging/text_formatter.h')
-rw-r--r--src/common/logging/text_formatter.h2
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;
std::string FormatLogMessage(const Entry& entry);
/// Formats and prints a log entry to stderr.
void PrintMessage(const Entry& entry);
-/// Prints the same message as `PrintMessage`, but colored acoording to the severity level.
+/// Prints the same message as `PrintMessage`, but colored according to the severity level.
void PrintColoredMessage(const Entry& entry);
} // namespace Log