Fix typo in doc [ci skip]

`enable` and `disable` are instance methods.

Patch by: yuuji.yaginuma <yuuji.yaginuma@gmail.com>

https://github.com/ruby/ruby/pull/1744
[Fix GH-1744]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
a_matsuda 2017-11-08 16:43:23 +00:00
parent fb5bc568ca
commit d3b63f9597

View File

@ -1217,7 +1217,7 @@ rb_tracepoint_new(VALUE target_thval, rb_event_flag_t events, void (*func)(VALUE
* *
* Returns a new TracePoint object, not enabled by default. * Returns a new TracePoint object, not enabled by default.
* *
* Next, in order to activate the trace, you must use TracePoint.enable * Next, in order to activate the trace, you must use TracePoint#enable
* *
* trace = TracePoint.new(:call) do |tp| * trace = TracePoint.new(:call) do |tp|
* p [tp.lineno, tp.defined_class, tp.method_id, tp.event] * p [tp.lineno, tp.defined_class, tp.method_id, tp.event]
@ -1232,7 +1232,7 @@ rb_tracepoint_new(VALUE target_thval, rb_event_flag_t events, void (*func)(VALUE
* # [48, IRB::Notifier::AbstractNotifier, :printf, :call] * # [48, IRB::Notifier::AbstractNotifier, :printf, :call]
* # ... * # ...
* *
* When you want to deactivate the trace, you must use TracePoint.disable * When you want to deactivate the trace, you must use TracePoint#disable
* *
* trace.disable * trace.disable
* *