[#3228] Core support for Gems, and namespace — "Luke A. Kanies" <luke@...>

Hi all,

21 messages 2004/07/27
[#3230] Re: Core support for Gems, and namespace — Austin Ziegler <halostatue@...> 2004/07/27

On Tue, 27 Jul 2004 11:39:08 +0900, Luke A. Kanies <luke@madstop.com> wrote:

[#3234] Re: Core support for Gems, and namespace — "Luke A. Kanies" <luke@...> 2004/07/27

On Tue, 27 Jul 2004, Austin Ziegler wrote:

[#3238] Re: Core support for Gems, and namespace — Austin Ziegler <halostatue@...> 2004/07/27

On Wed, 28 Jul 2004 00:14:29 +0900, Luke A. Kanies <luke@madstop.com> wrote:

[doc-patch] Another rdoc formatting error in array.c

From: Johan Holmberg <holmberg@...>
Date: 2004-07-10 17:09:16 UTC
List: ruby-core #3170
On Fri, 9 Jul 2004, H.Yamamoto wrote:
>
> I've committed [ruby-core:3132] and [ruby-core:3136].
>

Thanks.

I have discovered yet another formatting error that I missed the
previous time. See the patch below.

/Johan Holmberg

------------------------------------------------------
Index: array.c
===================================================================
RCS file: /src/ruby/array.c,v
retrieving revision 1.151
diff -c -r1.151 array.c
*** array.c	9 Jul 2004 13:37:55 -0000	1.151
--- array.c	10 Jul 2004 17:03:52 -0000
***************
*** 2233,2243 ****

  /*
   * call-seq:
!  *     array.clear    =>  array
!  *   Removes all elements from _self_.
   *
!  *     a = [ "a", "b", "c", "d", "e" ]
!  *     a.clear    #=> [ ]
   */

  VALUE
--- 2233,2244 ----

  /*
   * call-seq:
!  *   array.clear    =>  array
   *
!  * Removes all elements from _self_.
!  *
!  *   a = [ "a", "b", "c", "d", "e" ]
!  *   a.clear    #=> [ ]
   */

  VALUE
------------------------------------------------------


In This Thread