aboutsummaryrefslogtreecommitdiff
path: root/dev/doc/debugging.md
diff options
context:
space:
mode:
authorMaxime Dénès2017-12-14 00:06:02 +0100
committerMaxime Dénès2017-12-14 00:06:02 +0100
commit290abf59e6f13bb1468d8e3df050cf0bd9c48708 (patch)
treea61d3dce0bd34372b48668f44d280b5d886e2994 /dev/doc/debugging.md
parent7576ffd4eb196d5d5a15f6cacb2ba5cba00576ef (diff)
parentf5cb7eb3e68e4b7d1bb5eeb8d9c58666201945d4 (diff)
Merge PR #6038: [build] Remove coqmktop in favor of ocamlfind.
Diffstat (limited to 'dev/doc/debugging.md')
-rw-r--r--dev/doc/debugging.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/doc/debugging.md b/dev/doc/debugging.md
index 7d3d811cc3..fa145d498a 100644
--- a/dev/doc/debugging.md
+++ b/dev/doc/debugging.md
@@ -73,8 +73,8 @@ Per function profiling
To profile function foo in file bar.ml, add the following lines, just
after the definition of the function:
- let fookey = Profile.declare_profile "foo";;
- let foo a b c = Profile.profile3 fookey foo a b c;;
+ let fookey = CProfile.declare_profile "foo";;
+ let foo a b c = CProfile.profile3 fookey foo a b c;;
where foo is assumed to have three arguments (adapt using
Profile.profile1, Profile. profile2, etc).