From 9e84f837365c65afc21071fb431dc4d17154499b Mon Sep 17 00:00:00 2001 From: drbrain Date: Tue, 29 May 2012 21:20:45 +0000 Subject: [PATCH] * error.c (exc_set_backtrace): Updated documentation to indicate set_backtrace allows a string as well as an array of strings. [ruby-trunk - Bug #6501] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35837 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ error.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1b12c24f0a..8c0bf9695f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Wed May 30 06:20:29 2012 Eric Hodel + + * error.c (exc_set_backtrace): Updated documentation to indicate + set_backtrace allows a string as well as an array of strings. + [ruby-trunk - Bug #6501] + Tue May 29 17:28:20 2012 Nobuyoshi Nakada * strftime.c (rb_strftime_with_timespec): support GNU extension triple diff --git a/error.c b/error.c index 1dce70c01b..eabc3c9eb3 100644 --- a/error.c +++ b/error.c @@ -709,11 +709,11 @@ rb_check_backtrace(VALUE bt) /* * call-seq: - * exc.set_backtrace(array) -> array + * exc.set_backtrace(backtrace) -> array * - * Sets the backtrace information associated with exc. The - * argument must be an array of String objects in the - * format described in Exception#backtrace. + * Sets the backtrace information associated with +exc+. The +backtrace+ must + * be an array of String objects or a single String in the format described + * in Exception#backtrace. * */