From 890df3d90b9fbcf413a817ef5d32ebce150e6334 Mon Sep 17 00:00:00 2001 From: Pranav Date: Thu, 29 Jul 2021 21:26:53 -0500 Subject: [PATCH] Fixed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a37938c5..c2df0d36 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ void daily_example() #### Backtrace support ```c++ // Debug messages can be stored in a ring buffer instead of being logged immediately. -// This is useful in order to display debug logs only when really nededed (e.g. when error happens). +// This is useful in order to display debug logs only when really needed (e.g. when error happens). // When needed, call dump_backtrace() to see them. spdlog::enable_backtrace(32); // Store the latest 32 messages in a buffer. Older messages will be dropped.