From 53ec135d45e298b296c58cd39d7782781cf4e525 Mon Sep 17 00:00:00 2001 From: kou Date: Thu, 17 Jan 2013 12:09:44 +0000 Subject: [PATCH] * eval.c: Fix a typo in ruby_finalize() documentation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38863 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ eval.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9f59f67835..1ecccdfbae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Jan 17 21:08:20 2013 Kouhei Sutou + + * eval.c: Fix a typo in ruby_finalize() documentation. + Thu Jan 17 20:28:18 2013 Benoit Daloze * object.c: Typo in Kernel#hash documentation. diff --git a/eval.c b/eval.c index 2c24474d3f..1b746f26ad 100644 --- a/eval.c +++ b/eval.c @@ -129,7 +129,7 @@ ruby_finalize_1(void) /** Runs the VM finalization processes. * - * END{} and procs registered by Kernel.#at_ext are + * END{} and procs registered by Kernel.#at_exit are * executed here. See the Ruby language spec for more details. * * @note This function is allowed to raise an exception if an error occurred.