diff options
Diffstat (limited to 'ABC/GraphStore.icl')
| -rw-r--r-- | ABC/GraphStore.icl | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ABC/GraphStore.icl b/ABC/GraphStore.icl index 0f32994..fd41517 100644 --- a/ABC/GraphStore.icl +++ b/ABC/GraphStore.icl @@ -36,7 +36,7 @@ where  	show_nds :: Int [Node] [Desc] -> String  	show_nds i [] ds = ""  	show_nds i [n:ns] ds -		= i <+ " : " <+ show_nd n ds <+ "\n" <+ show_nds (i+1) ns ds +		= "    " <+ i <+ " : " <+ show_nd n ds <+ "\n" <+ show_nds (i+1) ns ds  	show_nd :: Node [Desc] -> String  	show_nd (Basic _ e b) _  = e <+ " " <+ b | 
