diff options
author | David A. Madore <david+git@madore.org> | 2019-08-13 11:34:25 +0200 |
---|---|---|
committer | David A. Madore <david+git@madore.org> | 2019-08-13 11:34:25 +0200 |
commit | 7d8e8a9d34dc2c7654480c3643729db4d3e83b57 (patch) | |
tree | 143f9c30cc48c598f25382d3ccf55f5211b430ca | |
parent | 1e8c46e2cfdd35c0fcc7dd06a23ce2ed30b170c9 (diff) | |
download | damlengine-7d8e8a9d34dc2c7654480c3643729db4d3e83b57.tar.gz damlengine-7d8e8a9d34dc2c7654480c3643729db4d3e83b57.tar.bz2 damlengine-7d8e8a9d34dc2c7654480c3643729db4d3e83b57.zip |
Twitter account permalink seems to be without slash at the end.
-rw-r--r-- | org/madore/damlengine/TodoFooter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org/madore/damlengine/TodoFooter.java b/org/madore/damlengine/TodoFooter.java index bb5d606..ca46a83 100644 --- a/org/madore/damlengine/TodoFooter.java +++ b/org/madore/damlengine/TodoFooter.java @@ -59,7 +59,7 @@ public final class TodoFooter extends TodoElement { // a.appendChild(ctx.doc.createTextNode("Google+")); addr.appendChild(ctx.doc.createTextNode("|")); a = ctx.doc.createElementNS(DamlEngine.XHTML_NS, "a"); - a.setAttributeNS(null, "href", "https://twitter.com/gro_tsen/"); + a.setAttributeNS(null, "href", "https://twitter.com/gro_tsen"); a.setAttributeNS(null, "rel", "author"); addr.appendChild(a); a.appendChild(ctx.doc.createTextNode("Twitter")); |