summaryrefslogtreecommitdiff
path: root/doc/debugging.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-04-13 08:59:52 -0700
committerBozhidar Batsov <bozhidar@batsov.com>2016-04-13 09:00:23 -0700
commitf9b1b45c5e62213d76e45db36c325d05514d36f6 (patch)
treed130c2969f8a3536d49ffcbfe3dbd720c0989238 /doc/debugging.md
parent0e52e3adbc8fcbcfc459273f6be5119a2fd0e3eb (diff)
Use one lever bigger headings everywhere in the manual
Diffstat (limited to 'doc/debugging.md')
-rw-r--r--doc/debugging.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/debugging.md b/doc/debugging.md
index b69c9ad5..b8b810cf 100644
--- a/doc/debugging.md
+++ b/doc/debugging.md
@@ -3,7 +3,7 @@ CIDER ships with a powerful interactive Clojure debugger inspired by Emacs's own
![CIDER Debugger](images/cider_debugger.gif)
-### Debugging
+## Debugging
The debugger can be invoked in several ways, the simplest one is to type
<kbd>C-u C-M-x</kbd>. This will take the current top-level form, place as many
@@ -37,7 +37,7 @@ At any point, you can bring up a list of all currently instrumented `def`s with
the command `cider-browse-instrumented-defs`. Protocols and types can be
instrumented as well, but they will not be listed by this command.
-### Keys
+## Keys
`cider-debug` tries to be consistent with
[Edebug][]. So
@@ -59,7 +59,7 @@ In addition, all the usual evaluation commands (such as <kbd>C-x C-e</kbd> or
<kbd>C-c M-:</kbd>) will use the current lexical context (local variables) while
the debugger is active.
-### Internal Details
+## Internal Details
*This section explains a bit of the inner workings of the debugger. It is mostly
to help those who are interested in contributing, and doesn't teach anything