diff options
author | Anthon van der Neut <anthon@mnt.org> | 2019-03-02 15:50:21 +0100 |
---|---|---|
committer | Miran <narimiran@disroot.org> | 2019-03-02 15:50:21 +0100 |
commit | 5ac7e32c7cc1e39b8bbbefe57b12cbf4074fa368 (patch) | |
tree | d80238779dd2e3b9decf45af817319d517a8ce2d /lib/pure | |
parent | 5d67208e340e9db892539c342f462190871f6f69 (diff) | |
download | Nim-5ac7e32c7cc1e39b8bbbefe57b12cbf4074fa368.tar.gz |
Matching actual proc name (#10766) [ci skip]
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/htmlparser.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/htmlparser.nim b/lib/pure/htmlparser.nim index a3683fdb2..e51ad86f4 100644 --- a/lib/pure/htmlparser.nim +++ b/lib/pure/htmlparser.nim @@ -39,7 +39,7 @@ ## import strutils # To use cmpIgnoreCase ## ## proc transformHyperlinks() = -## let html = loadHTML("input.html") +## let html = loadHtml("input.html") ## ## for a in html.findAll("a"): ## if a.attrs.hasKey "href": |