diff options
author | Zestyr <zestyr@protonmail.com> | 2019-06-27 20:42:00 +0200 |
---|---|---|
committer | Zestyr <zestyr@protonmail.com> | 2019-06-27 20:44:42 +0200 |
commit | bab83c4d8bdbb7db8f0ca69c165612929f85f85c (patch) | |
tree | 4ed15fa2bbbeec9a5d55612c8c90424f77e842d5 /lib | |
parent | f36a61e6d41603200ef1b39dcb503fd9b7d977bc (diff) | |
download | Nim-bab83c4d8bdbb7db8f0ca69c165612929f85f85c.tar.gz |
Fix typo in xmltree docs [ci skip]
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/xmltree.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pure/xmltree.nim b/lib/pure/xmltree.nim index bc43ea21b..01e7f8bc6 100644 --- a/lib/pure/xmltree.nim +++ b/lib/pure/xmltree.nim @@ -441,7 +441,7 @@ proc attrs*(n: XmlNode): XmlAttributes {.inline.} = ## ## See also: ## * `attrs= proc <#attrs=,XmlNode,XmlAttributes>`_ for XmlAttributes setter - ## * `attrsLen proc <#attrsLen,XmlNode>`_ for numbef of attributes + ## * `attrsLen proc <#attrsLen,XmlNode>`_ for number of attributes ## * `attr proc <#attr,XmlNode,string>`_ for finding an attribute runnableExamples: var j = newElement("myTag") @@ -458,7 +458,7 @@ proc `attrs=`*(n: XmlNode, attr: XmlAttributes) {.inline.} = ## ## See also: ## * `attrs proc <#attrs,XmlNode>`_ for XmlAttributes getter - ## * `attrsLen proc <#attrsLen,XmlNode>`_ for numbef of attributes + ## * `attrsLen proc <#attrsLen,XmlNode>`_ for number of attributes ## * `attr proc <#attr,XmlNode,string>`_ for finding an attribute runnableExamples: var j = newElement("myTag") @@ -494,7 +494,7 @@ proc attr*(n: XmlNode, name: string): string = ## See also: ## * `attrs proc <#attrs,XmlNode>`_ for XmlAttributes getter ## * `attrs= proc <#attrs=,XmlNode,XmlAttributes>`_ for XmlAttributes setter - ## * `attrsLen proc <#attrsLen,XmlNode>`_ for numbef of attributes + ## * `attrsLen proc <#attrsLen,XmlNode>`_ for number of attributes runnableExamples: var j = newElement("myTag") let att = {"key1": "first value", "key2": "second value"}.toXmlAttributes |