summaryrefslogtreecommitdiff
path: root/ocamldoc/odoc_parser.mly
diff options
context:
space:
mode:
authorFourchaux <jprodi04@gmail.com>2017-08-10 12:59:23 +0200
committerMark Shinwell <mshinwell@gmail.com>2017-08-10 11:59:23 +0100
commit72cfdd56e9459af07731451c4c10ae0ec2c6d877 (patch)
treeb1958e44ee1ea40bcca88e4a2445ce42f878e724 /ocamldoc/odoc_parser.mly
parent9a1ddfa2dac2207b3a75a32bf9550fb4bcb39f6e (diff)
downloadocaml-72cfdd56e9459af07731451c4c10ae0ec2c6d877.tar.gz
Typos and basic grammar error fixing (#1280)
Diffstat (limited to 'ocamldoc/odoc_parser.mly')
-rw-r--r--ocamldoc/odoc_parser.mly2
1 files changed, 1 insertions, 1 deletions
diff --git a/ocamldoc/odoc_parser.mly b/ocamldoc/odoc_parser.mly
index 9c762b1d24..f27a9982fe 100644
--- a/ocamldoc/odoc_parser.mly
+++ b/ocamldoc/odoc_parser.mly
@@ -147,7 +147,7 @@ deprecated:
raise_exc:
T_RAISES Desc
{
- (* isolate the exception construtor name *)
+ (* isolate the exception constructor name *)
let s = $2 in
match Str.split (Str.regexp (blank^"+")) s with
[]