diff options
author | Nobuyoshi Nakada <[email protected]> | 2020-12-19 15:01:47 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2020-12-19 15:34:37 +0900 |
commit | a5832c9a37c34756020425b60dd265ca1a45d95b (patch) | |
tree | cb2526b5f1b0f647a91036af7deeb4fcaca29533 /doc | |
parent | 144b11e03ee0994cacd3fa5eb9ff8b87bd627452 (diff) |
[DOC] Fixed markups in dtrace_probes.rdoc [ci skip]
* `+` can enclose just a word.
* TIDYLINK with braces gets confused when other braces even inside
code precede.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/dtrace_probes.rdoc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/dtrace_probes.rdoc b/doc/dtrace_probes.rdoc index afb4216876..3afbbeff4e 100644 --- a/doc/dtrace_probes.rdoc +++ b/doc/dtrace_probes.rdoc @@ -56,16 +56,16 @@ with when they are fired and the arguments they take: methodname name of the method about to be executed (a string) filename the file name where the method is _being called_ (a string) lineno the line number where the method is _being called_ (an int) - - *NOTE*: will only be fired if tracing is enabled, e.g. with: +TracePoint.new{}.enable+. - See {ticket #14104}[https://bugs.ruby-lang.org/issues/14104] for more details. + + *NOTE*: will only be fired if tracing is enabled, e.g. with: <code>TracePoint.new{}.enable</code>. + See Feature#14104[https://bugs.ruby-lang.org/issues/14104] for more details. [ruby:::method-return(classname, methodname, filename, lineno);] This probe is fired just after a method has returned. The arguments are the same as "ruby:::method-entry". - - *NOTE*: will only be fired if tracing is enabled, e.g. with: +TracePoint.new{}.enable+. - See {ticket #14104}[https://bugs.ruby-lang.org/issues/14104] for more details. + + *NOTE*: will only be fired if tracing is enabled, e.g. with: <code>TracePoint.new{}.enable</code>. + See Feature#14104[https://bugs.ruby-lang.org/issues/14104] for more details. [ruby:::cmethod-entry(classname, methodname, filename, lineno);] This probe is fired just before a C method is entered. The arguments are the |