From 105d7d430b1e3818e0acb77a91c943ea20580b70 Mon Sep 17 00:00:00 2001 From: Chafik Date: Wed, 16 Oct 2019 18:52:43 -0700 Subject: [PATCH] Fix typo in read more (#948) --- misc/READMORE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/READMORE.md b/misc/READMORE.md index 9cff3c1..b0a10b0 100644 --- a/misc/READMORE.md +++ b/misc/READMORE.md @@ -154,7 +154,7 @@ This will block the calling thread until "fallthrough". The event loop will bloc Many users ask how they should stop the event loop. That's not how it is done, you never stop it, you let it fall through. By closing all sockets, stopping the listen socket, removing any timers, etc, the loop will automatically cause App.run to return gracefully, with no memory leaks. -Because the App itself is under RAII control, once the blocking .run call returns and the App goes out of scope, all memory will gracefully we deleted. +Because the App itself is under RAII control, once the blocking .run call returns and the App goes out of scope, all memory will gracefully be deleted. ### Putting it all toghether