aboutsummaryrefslogtreecommitdiff
path: root/ABC/GraphStore.icl
diff options
context:
space:
mode:
authorCamil Staps2016-07-03 14:42:27 +0200
committerCamil Staps2016-07-03 14:42:27 +0200
commit6025a6637dae924ec87e10d94b0b49ea81592eea (patch)
tree6e18a288cedd5adaa84ceb7737900440166202da /ABC/GraphStore.icl
parentMoved to directory, added test program (diff)
Added ABC.Code
Diffstat (limited to 'ABC/GraphStore.icl')
-rw-r--r--ABC/GraphStore.icl2
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