From 92068186b58d919ae6120e01762639a0eb2d98de Mon Sep 17 00:00:00 2001 From: Benoit de Chezelles Date: Sat, 10 Mar 2018 17:27:52 -0800 Subject: [PATCH] Fix doc --- src/kernel.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel.cr b/src/kernel.cr index 0ee975a4b712..2ff4694edf09 100644 --- a/src/kernel.cr +++ b/src/kernel.cr @@ -135,7 +135,7 @@ module AtExitHandlers def self.add_exception(ex : Exception) # Prepend a handler for this exception. It will run after all at_exit - # handlers, to make sure the user sees the exception if any. + # handlers, to make sure the user sees the exception. handlers.unshift ->(status : Int32) { ex.inspect_with_backtrace(STDERR) } end