Skip to content

Commit 58f1b5a

Browse files
committed
some typos
1 parent bf5f9b6 commit 58f1b5a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/raw.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
4848
Useful 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
"""
149149
function tag(o::Raw)
150150
o.type [RawElementOpen, RawElementClose, RawElementSelfClosed, RawProcessingInstruction] && return nothing

0 commit comments

Comments
 (0)