summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-30 14:02:31 +0000
committerzzak <zzak@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-09-30 14:02:31 +0000
commit8073bd792c592b450ed084cf0c99e0b630b08586 (patch)
tree92f7b476a28262879b947a03fa3435c62fae7e95
parent1d4e3d48c20325d541a24130de68ec81e92551b4 (diff)
* ext/objspace/object_tracing.c: [DOC] Adjust rdoc formatting and fix
small grammar typo git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--ext/objspace/object_tracing.c11
2 files changed, 10 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index c3796f4ae6..8236b6fc48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Sep 30 23:01:01 2013 Zachary Scott <e@zzak.io>
+
+ * ext/objspace/object_tracing.c: [DOC] Adjust rdoc formatting and fix
+ small grammar typo
+
Mon Sep 30 17:28:39 2013 Koichi Sasada <ko1@atdot.net>
* ext/objspace/object_tracing.c: [DOC] add some nots for
diff --git a/ext/objspace/object_tracing.c b/ext/objspace/object_tracing.c
index fe39aa16f5..16591ca609 100644
--- a/ext/objspace/object_tracing.c
+++ b/ext/objspace/object_tracing.c
@@ -176,8 +176,8 @@ trace_object_allocations_start(VALUE self)
*
* Stop tracing object allocations.
*
- * Note that if trace_object_allocations_start is called n-times, then
- * stop tracing after calling trace_object_allocations_stop n-times.
+ * Note that if ::trace_object_allocations_start is called n-times, then stop
+ * tracing after calling ::trace_object_allocations_stop n-times.
*
*/
static VALUE
@@ -244,11 +244,10 @@ trace_object_allocations_clear(VALUE self)
* C.new.foo #=> "objtrace.rb:8"
*
* This example has included the ObjectSpace module to make it easier to read,
- * but you can also use the
- * "<code>ObjectSpace::trace_object_allocations</code>" notation (recommended).
+ * but you can also use the ::trace_object_allocations notation (recommended).
*
- * Note that this feature introduces huge performance down and huge memory
- * consumption.
+ * Note that this feature introduces a huge performance decrease and huge
+ * memory consumption.
*/
static VALUE
trace_object_allocations(VALUE self)