doc/RubyProf/CallInfo.html in ruby-prof-0.13.0 vs doc/RubyProf/CallInfo.html in ruby-prof-0.13.1
- old
+ new
@@ -225,11 +225,11 @@
<div class="method-source-code" id="call_sequence-source">
<pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 25</span>
<span class="ruby-keyword">def</span> <span class="ruby-identifier">call_sequence</span>
<span class="ruby-ivar">@call_sequence</span> <span class="ruby-operator">||=</span> <span class="ruby-keyword">begin</span>
- <span class="ruby-identifier">stack</span>.<span class="ruby-identifier">map</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">method</span><span class="ruby-operator">|</span> <span class="ruby-identifier">method</span>.<span class="ruby-identifier">full_name</span>}.<span class="ruby-identifier">join</span>(<span class="ruby-string">'->'</span>)
+ <span class="ruby-identifier">stack</span>.<span class="ruby-identifier">map</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">method</span><span class="ruby-operator">|</span> <span class="ruby-identifier">method</span>.<span class="ruby-identifier">full_name</span>}.<span class="ruby-identifier">join</span>(<span class="ruby-string">'->'</span>)
<span class="ruby-keyword">end</span>
<span class="ruby-keyword">end</span></pre>
</div><!-- call_sequence-source -->
</div>
@@ -327,10 +327,10 @@
<div class="method-description">
<p>find a specific call in list of children. returns nil if not found. note:
-there can’t be more than one child with a given target method. in other
+there can't be more than one child with a given target method. in other
words: x.children.grep{|y|y.target==m}.size <= 1 for all method infos m
and call infos x</p>