aboutsummaryrefslogtreecommitdiff
path: root/dev
diff options
context:
space:
mode:
authorThéo Zimmermann2017-08-15 17:30:45 +0200
committerThéo Zimmermann2017-08-29 17:39:33 +0200
commitb14a346084d436b50a75858a395853fccb2207d0 (patch)
tree6020ffc45b27ad575ff0e5a25bb3db045e05f9fc /dev
parentd1c64c9e74604d08541070f70537d80f7d49d345 (diff)
Move debugging to Markdown.
With a minimal diff (so I'm not putting quotes ` ` around all the code).
Diffstat (limited to 'dev')
-rw-r--r--dev/doc/debugging.md (renamed from dev/doc/debugging.txt)12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev/doc/debugging.txt b/dev/doc/debugging.md
index 3e2b435b3e..1c7b2bc974 100644
--- a/dev/doc/debugging.txt
+++ b/dev/doc/debugging.md
@@ -65,14 +65,14 @@ Global gprof-based profiling
Per function profiling
======================
- 1. To profile function foo in file bar.ml, add the following lines, just
- after the definition of the function:
+ 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;;
- where foo is assumed to have three arguments (adapt using
- Profile.profile1, Profile. profile2, etc).
+ where foo is assumed to have three arguments (adapt using
+ Profile.profile1, Profile. profile2, etc).
- This has the effect to cumulate the time passed in foo under a
- line of name "foo" which is displayed at the time coqtop exits.
+ This has the effect to cumulate the time passed in foo under a
+ line of name "foo" which is displayed at the time coqtop exits.