about summary refs log tree commit diff stats
path: root/src/html/parser.nim
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-12-17 18:38:32 +0100
committerbptato <nincsnevem662@gmail.com>2021-12-17 18:44:44 +0100
commitef4604ba8f494a2997a744a0b04732dc686c46ea (patch)
tree77a67abb1bc31a5ad86966729ba56bb307083827 /src/html/parser.nim
parentd430a83ab3e971b816581839fbdf860a293242e8 (diff)
downloadchawan-ef4604ba8f494a2997a744a0b04732dc686c46ea.tar.gz
More code formatting consistency
Diffstat (limited to 'src/html/parser.nim')
-rw-r--r--src/html/parser.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/parser.nim b/src/html/parser.nim
index 74ec68b7..153df1c5 100644
--- a/src/html/parser.nim
+++ b/src/html/parser.nim
@@ -165,7 +165,7 @@ proc parse_tag(buf: string, at: var int): DOMParsedTag =
     inc at
   return tag
 
-proc insertNode(parent: Node, node: Node) =
+proc insertNode(parent, node: Node) =
   parent.childNodes.add(node)
 
   if parent.childNodes.len > 1: