diff --git a/coq/STLCDefinition.v b/coq/STLCDefinition.v
index f78e1dfa9e09f70441129a16df68a4d44b0d4412..20f50425116c3cb1a37212a89b6a047085e68f5c 100644
--- a/coq/STLCDefinition.v
+++ b/coq/STLCDefinition.v
@@ -36,7 +36,7 @@ The typing judgement
 --------------------
 
 The simply-typed lambda-calculus is defined by the following three
-typing rules.
+typing rules. (For simplicity, the typing rule for `Let` is omitted.)
 
 |*)
 
@@ -58,11 +58,11 @@ Inductive jt : tyenv -> term -> ty -> Prop :=
 
 (*|
 
-The tactic [pick_jt t] picks a hypothesis [h] whose statement is a typing
-judgement about the term [t], and passes [h] to the Ltac continuation [k].
+The tactic `pick_jt t` picks a hypothesis `h` whose statement is a typing
+judgement about the term `t`, and passes `h` to the Ltac continuation `k`.
 
-Thus, for instance, [pick_jt t invert] selects a typing judgement that is
-at hand for the term [t] and inverts it.
+Thus, for instance, `pick_jt t invert` selects a typing judgement that is
+at hand for the term `t` and inverts it.
 
 |*)