aboutsummaryrefslogtreecommitdiffstats
path: root/debug/DwarfUtil.ml
diff options
context:
space:
mode:
Diffstat (limited to 'debug/DwarfUtil.ml')
-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;}