summaryrefslogtreecommitdiff
path: root/src/tag.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-08-11 12:01:54 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-08-11 12:01:54 -0400
commit0014d8534ad3c3bbed2b02b62843eb62169f04b5 (patch)
tree27602bf6de6e24922737f44491a00c209b00ca3e /src/tag.sml
parent86a182be33c265cd436d8ac4a8bb7baf797d9195 (diff)
JavaScript urlifying of bools; correct Link attribute escaping
Diffstat (limited to 'src/tag.sml')
-rw-r--r--src/tag.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.sml b/src/tag.sml
index 78a4609b..30720ec9 100644
--- a/src/tag.sml
+++ b/src/tag.sml
@@ -117,7 +117,7 @@ fun exp env (e, s) =
end
in
case x of
- (CName "Link", _) => tagIt (Link, "Href")
+ (CName "Link", _) => tagIt (Link, "Link")
| (CName "Action", _) => tagIt (Action ReadWrite, "Action")
| _ => ((x, e, t), (count, tags, byTag, newTags))
end)