aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--array.c2
-rw-r--r--complex.c2
-rw-r--r--lib/csv.rb2
4 files changed, 4 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 059cb1e6db..76884d5a95 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,17 +1,14 @@
-<<<<<<< .mine
Thu Sep 20 10:56:08 2012 NAKAMURA Usaku <usa@ruby-lang.org>
* test/drb/ut_drb.rb: revert a part of r36987, and get rid of a warning
with another method. if the substitution is removed, the ExtSrv
object will be GC'ed and some tests will be blocked.
-=======
Thu Sep 20 10:30:00 2012 Zachary Scott <zzak@ruby-lang.org>
* lib/find.rb: Error in documentation example
Found by Herwin Weststrate, thank you!
->>>>>>> .r36994
Thu Sep 20 07:20:00 2012 Zachary Scott <zzak@ruby-lang.org>
* complex.c: Examples for Complex Documentation.
@@ -26,7 +23,7 @@ Thu Sep 20 07:15:00 2012 Zachary Scott <zzak@ruby-lang.org>
Thu Sep 20 07:05:00 2012 Zachary Scott <zzak@ruby-lang.org>
- * lib/csv.rb (Object#CSV, Array#to_csv, String#parse_csv):
+ * lib/csv.rb (Object#CSV, Array#to_csv, String#parse_csv):
Examples and documentation for CSV.
[Bug #6880] [ruby-core:47218]
diff --git a/array.c b/array.c
index 0e4061931f..04e59a33c7 100644
--- a/array.c
+++ b/array.c
@@ -3528,7 +3528,7 @@ ary_recycle_hash(VALUE hash)
* Returns a new array that is a copy of the original array, removing any
* items that also appear in +other_ary+.
*
- * It compares elements using their hash (returned by the Object#hash method).
+ * It compares elements using their hash (returned by the Object#hash method).
*
* [ 1, 1, 2, 2, 3, 3, 4, 5 ] - [ 1, 2, 4 ] #=> [ 3, 3, 5 ]
*
diff --git a/complex.c b/complex.c
index a1ec5d5b41..996aed1ac0 100644
--- a/complex.c
+++ b/complex.c
@@ -440,7 +440,7 @@ nucomp_s_canonicalize_internal(VALUE klass, VALUE real, VALUE imag)
* Complex.rectangular(real[, imag]) -> complex
*
* Returns a complex object which denotes the given rectangular form.
- *
+ *
* For example:
* Complex.rect(12, 2) # => (12+2i)
* Complex.rect(0, 17) # => (0+17i)
diff --git a/lib/csv.rb b/lib/csv.rb
index ede7c3b0d8..5be4b0d347 100644
--- a/lib/csv.rb
+++ b/lib/csv.rb
@@ -2373,7 +2373,7 @@ end
#
# CSV("CSV,data") { |c|
# c.read.any? { |a| a.include?("zombies") }
-# } #=> false
+# } #=> false
#
def CSV(*args, &block)
CSV.instance(*args, &block)