From 738c07062ea0708fc9208318933fda16fd696cc0 Mon Sep 17 00:00:00 2001 From: Michael Schmidt Date: Wed, 4 Nov 2015 17:29:22 +0100 Subject: bug 17567, typos --- debug/DwarfUtil.ml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'debug') 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;} -- cgit