[前][次][番号順一覧][スレッド一覧]

ruby-changes:18488

From: kazu <ko1@a...>
Date: Tue, 11 Jan 2011 15:35:47 +0900 (JST)
Subject: [ruby-changes:18488] Ruby:r30511 (trunk): fix typos

kazu	2011-01-11 15:34:14 +0900 (Tue, 11 Jan 2011)

  New Revision: 30511

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=30511

  Log:
    fix typos

  Modified files:
    trunk/array.c

Index: array.c
===================================================================
--- array.c	(revision 30510)
+++ array.c	(revision 30511)
@@ -1311,7 +1311,7 @@
 /*!
  * expands or shrinks \a ary to \a len elements.
  * expanded region will be filled with Qnil.
- * \param ary  an arrray
+ * \param ary  an array
  * \param len  new size
  * \return     \a ary
  * \post       the size of \a ary is \a len.
@@ -4466,7 +4466,7 @@
 	counters[m]++;
 	while (counters[m] == RARRAY_LEN(arrays[m])) {
 	    counters[m] = 0;
-	    /* If the first counter overlows, we are done */
+	    /* If the first counter overflows, we are done */
 	    if (--m < 0) goto done;
 	    counters[m]++;
 	}

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]