diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-10 17:34:39 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-03-10 17:34:39 +0000 |
commit | 7d2f12589b9863889bcf889cdfff8a7528e4a1a7 (patch) | |
tree | ceecf6d22057802cd7b3f583b8a5a6d764c2c559 /ext/Devel | |
parent | 46c947e8b9def6de34ac831834a3c290ab266515 (diff) | |
download | perl-7d2f12589b9863889bcf889cdfff8a7528e4a1a7.tar.gz |
Doc patch for Devel::DProf (from Debian)
p4raw-id: //depot/perl@24018
Diffstat (limited to 'ext/Devel')
-rw-r--r-- | ext/Devel/DProf/DProf.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/Devel/DProf/DProf.pm b/ext/Devel/DProf/DProf.pm index 247b664caf..289ca80782 100644 --- a/ext/Devel/DProf/DProf.pm +++ b/ext/Devel/DProf/DProf.pm @@ -6,7 +6,7 @@ Devel::DProf - a Perl code profiler =head1 SYNOPSIS - perl5 -d:DProf test.pl + perl -d:DProf test.pl =head1 DESCRIPTION @@ -21,7 +21,7 @@ To profile a Perl script run the perl interpreter with the B<-d> debugging switch. The profiler uses the debugging hooks. So to profile script F<test.pl> the following command should be used: - perl5 -d:DProf test.pl + perl -d:DProf test.pl When the script terminates (or when the output buffer is filled) the profiler will dump the profile information to a file called |