summaryrefslogtreecommitdiffstats
path: root/range.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-01 21:20:44 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-07-01 21:20:44 +0000
commitce250582e4b7224a8f46b5cb4665e0d315068e80 (patch)
tree453c6c36ccf08952f5546407366af1b76f5f56d2 /range.c
parent37aa6e3f65311fb34d17dba589aab96b3943651e (diff)
downloadruby-ce250582e4b7224a8f46b5cb4665e0d315068e80.tar.gz
ruby-ce250582e4b7224a8f46b5cb4665e0d315068e80.tar.xz
ruby-ce250582e4b7224a8f46b5cb4665e0d315068e80.zip
* hash.c (rb_hash_hash): documentation fix. a patch from
Marc-Andre Lafortune. [ruby-core:23943] * object.c (rb_mod_cmp): ditto. * range.c (range_eq): ditto. * string.c (rb_str_partition, rb_str_rpartition): ditto. * struct.c (rb_struct_s_def): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'range.c')
-rw-r--r--range.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/range.c b/range.c
index 3ffbb750f..0d25a37d5 100644
--- a/range.c
+++ b/range.c
@@ -112,7 +112,7 @@ range_exclude_end_p(VALUE range)
*
* Returns <code>true</code> only if <i>obj</i> is a Range, has equivalent
* beginning and end items (by comparing them with <code>==</code>), and has
- * the same #exclude_end? setting as <i>rng</t>.
+ * the same <code>exclude_end?</code> setting as <i>rng</i>.
*
* (0..2) == (0..2) #=> true
* (0..2) == Range.new(0,2) #=> true