* 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
This commit is contained in:
zzak 2013-09-30 14:02:31 +00:00
Родитель 1d4e3d48c2
Коммит 8073bd792c
2 изменённых файлов: 10 добавлений и 6 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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)