* error.c: [DOC] Exception#cause may return nil. [ci skip]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2014-02-03 03:05:51 +00:00
Родитель 5e17a85cfe
Коммит bd950a75b5
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Mon Feb 3 12:04:47 2014 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* error.c: [DOC] Exception#cause may return nil. [ci skip]
Mon Feb 3 10:49:48 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* dir.c (glob_helper): return the filename with actual cases on

Просмотреть файл

@ -806,7 +806,7 @@ rb_exc_set_backtrace(VALUE exc, VALUE bt)
/*
* call-seq:
* exception.cause -> an_exception
* exception.cause -> an_exception or nil
*
* Returns the previous exception ($!) at the time this exception was raised.
* This is useful for wrapping exceptions and retaining the original exception