File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ Create an iterator over raw chunks of data in an XML file. Each chunk of data r
3939 - RawComment # <!-- ... -->
4040 - RawCData # <![CData[...]]>
4141 - RawDeclaration # <?xml attributes... ?>
42- - RawProcessingInstruction # <?NAME attributes... ?>
42+ - RawProcessingInstruction # <?NAME attributes... ?>
4343 - RawDTD # <!DOCTYPE ...>
44- - RawElementOpen # <NAME attributes... >
45- - RawElementClose # </NAME>
46- - RawElementSelfClosed # <NAME attributes... />
44+ - RawElementOpen # <NAME attributes... >
45+ - RawElementClose # </NAME>
46+ - RawElementSelfClosed # <NAME attributes... />
4747
4848Useful functions:
4949
@@ -144,7 +144,7 @@ nodetype(o::Raw) = nodetype(o.type)
144144"""
145145 tag(node) --> String or Nothing
146146
147- Return the tag name of `Element` and `PROCESESSING_INSTRUCTION ` nodes.
147+ Return the tag name of `Element` and `PROCESSING_INSTRUCTION ` nodes.
148148"""
149149function tag (o:: Raw )
150150 o. type ∉ [RawElementOpen, RawElementClose, RawElementSelfClosed, RawProcessingInstruction] && return nothing
You can’t perform that action at this time.
0 commit comments