Skip to content

Commit

Permalink
fix mismatched paranthesis in doc example
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pecl/xhprof/trunk@281204 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
kannan committed May 27, 2009
1 parent 292d183 commit 653e149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xhprof_html/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -501,14 +501,14 @@ <h3>XHProf Documentation (Draft)</h3>
// elapsed time profiling; ignore call_user_func* during profiling
xhprof_enable(0,
array('ignored_functions' => array('call_user_func',
'call_user_func_array'));
'call_user_func_array')));
</b>
or,
<b>
// elapsed time + memory profiling; ignore call_user_func* during profiling
xhprof_enable(XHPROF_FLAGS_MEMORY,
array('ignored_functions' => array('call_user_func',
'call_user_func_array'));
'call_user_func_array')));
</b>
</pre></ul>

Expand Down

0 comments on commit 653e149

Please sign in to comment.