aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
authorMichael Schmidt <github@mschmidt.me>2015-11-04 17:29:22 +0100
committerMichael Schmidt <github@mschmidt.me>2015-11-04 17:29:22 +0100
commit738c07062ea0708fc9208318933fda16fd696cc0 (patch)
tree0af2bab95cf1a3a4de065c9d46fd0c0a9fe631e1 /debug
parentd10d384f4ce0c1081497cf0657ea3580779d7330 (diff)
downloadcompcert-kvx-738c07062ea0708fc9208318933fda16fd696cc0.tar.gz
compcert-kvx-738c07062ea0708fc9208318933fda16fd696cc0.zip
bug 17567, typos
Diffstat (limited to 'debug')
-rw-r--r--debug/DwarfUtil.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/debug/DwarfUtil.ml b/debug/DwarfUtil.ml
index 3e252dd2..8db80fca 100644
--- a/debug/DwarfUtil.ml
+++ b/debug/DwarfUtil.ml
@@ -10,7 +10,7 @@
(* *)
(* *********************************************************************)
-(* Utility functions for the dwarf debuging type *)
+(* Utility functions for the dwarf debugging type *)
open DwarfTypes
@@ -22,12 +22,12 @@ let new_entry id tag =
id = id;
}
-(* Add an entry as child to another entry *)
+(* Add an entry as child to another entry *)
let add_child entry child =
{entry with children = child::entry.children;}
-(* Add entries as children to another entry *)
+(* Add entries as children to another entry *)
let add_children entry children =
{entry with children = entry.children@children;}