summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Burrows <dburrows@debian.org>2009-04-03 08:56:36 -0700
committerDaniel Burrows <dburrows@debian.org>2009-04-03 08:56:36 -0700
commit4ef4de9b8a5678052b96e7741e7ea993a0a65e80 (patch)
tree83e7d56bcfc0c73be939434cb17c0fd053a8a0a5 /tools
parent2efe3257ec4229886c809d00136acba5f0eb7287 (diff)
downloadaptitude-4ef4de9b8a5678052b96e7741e7ea993a0a65e80.tar.gz
Fix a silly typo in a function declaration.
Diffstat (limited to 'tools')
-rw-r--r--tools/resolver-visualize/Dot.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/resolver-visualize/Dot.hs b/tools/resolver-visualize/Dot.hs
index 4e6fbb66..d65110d6 100644
--- a/tools/resolver-visualize/Dot.hs
+++ b/tools/resolver-visualize/Dot.hs
@@ -105,7 +105,7 @@ instance Attributed Edge where
showsAttribute :: Name -> Maybe AttrValue -> ShowS
-showsAttriubte (Name name) Nothing = shows name
+showsAttribute (Name name) Nothing = shows name
showsAttribute (Name name) (Just (AttrValue value)) =
shows name . ('=':) . shows value