Skip to content

Commit

Permalink
Fixed path definition error in README example
Browse files Browse the repository at this point in the history
Fixed the read file example. The books.xml example xml file is actually contained in the data folder.
  • Loading branch information
Kevin-Mattheus-Moerman authored Dec 13, 2023
1 parent 6c906c1 commit 7c5ae29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ parent(node) → typeof(node)
```julia
using XML

filename = joinpath(dirname(pathof(XML)), "..", "test", "books.xml")
filename = joinpath(dirname(pathof(XML)), "..", "test", "data", "books.xml")

doc = read(filename, Node)

Expand Down

0 comments on commit 7c5ae29

Please sign in to comment.