Merge pull request #1711 from ChristofKaufmann/fix-typo

Fix typo in comment
This commit is contained in:
Gabi Melman 2020-10-20 10:00:43 +03:00 committed by GitHub
commit a42b40656c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.