Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristof Kaufmann <christofkaufmann.dev@gmail.com>2020-10-20 03:49:09 +0300
committerChristof Kaufmann <christofkaufmann.dev@gmail.com>2020-10-20 03:49:09 +0300
commit40160f2a5773fa962511e520548fd5e1672cf800 (patch)
tree68baa8f26f6fa38fe139cbe9763d76b1b7795ace /include/spdlog/spdlog.h
parent90b33b15526723f86ce7499aadad9e7e159b6852 (diff)
Fix typo in comment
Diffstat (limited to 'include/spdlog/spdlog.h')
-rw-r--r--include/spdlog/spdlog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/spdlog/spdlog.h b/include/spdlog/spdlog.h
index bac5d26f..d09a3d6d 100644
--- a/include/spdlog/spdlog.h
+++ b/include/spdlog/spdlog.h
@@ -111,7 +111,7 @@ SPDLOG_API void set_automatic_registration(bool automatic_registration);
//
// The default logger object can be accessed using the spdlog::default_logger():
// For example, to add another sink to it:
-// spdlog::default_logger()->sinks()->push_back(some_sink);
+// spdlog::default_logger()->sinks().push_back(some_sink);
//
// The default logger can replaced using spdlog::set_default_logger(new_logger).
// For example, to replace it with a file logger.