diff options
author | Daniel Burrows <dburrows@debian.org> | 2009-04-03 08:56:36 -0700 |
---|---|---|
committer | Daniel Burrows <dburrows@debian.org> | 2009-04-03 08:56:36 -0700 |
commit | 4ef4de9b8a5678052b96e7741e7ea993a0a65e80 (patch) | |
tree | 83e7d56bcfc0c73be939434cb17c0fd053a8a0a5 /tools | |
parent | 2efe3257ec4229886c809d00136acba5f0eb7287 (diff) | |
download | aptitude-4ef4de9b8a5678052b96e7741e7ea993a0a65e80.tar.gz |
Fix a silly typo in a function declaration.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/resolver-visualize/Dot.hs | 2 |
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 |