diff options
author | Araq <rumpf_a@web.de> | 2014-08-27 23:42:51 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-08-27 23:42:51 +0200 |
commit | 11b69587554a99deb93ca2447ee3aeeacdb647c5 (patch) | |
tree | c4e580c4b084f85283f7159cb4772c93f9c08a5e /examples | |
parent | 15a7bcc89f43b36da1973b53db3b9e466f9f49f6 (diff) | |
download | Nim-11b69587554a99deb93ca2447ee3aeeacdb647c5.tar.gz |
big rename
Diffstat (limited to 'examples')
-rw-r--r-- | examples/htmlrefs.nim | 2 | ||||
-rw-r--r-- | examples/htmltitle.nim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/htmlrefs.nim b/examples/htmlrefs.nim index 8b668325f..6be28d1ca 100644 --- a/examples/htmlrefs.nim +++ b/examples/htmlrefs.nim @@ -15,7 +15,7 @@ var links = 0 # count the number of links var filename = addFileExt(ParamStr(1), "html") var s = newFileStream(filename, fmRead) if s == nil: quit("cannot open the file " & filename) -var x: TXmlParser +var x: XmlParser open(x, s, filename) next(x) # get first event block mainLoop: diff --git a/examples/htmltitle.nim b/examples/htmltitle.nim index a3280bb13..7e66fabaa 100644 --- a/examples/htmltitle.nim +++ b/examples/htmltitle.nim @@ -10,7 +10,7 @@ if paramCount() < 1: var filename = addFileExt(paramStr(1), "html") var s = newFileStream(filename, fmRead) if s == nil: quit("cannot open the file " & filename) -var x: TXmlParser +var x: XmlParser open(x, s, filename) while true: x.next() |