From 7c5ae295bef34bac9e38984abba813ca3db10f51 Mon Sep 17 00:00:00 2001 From: Kevin Mattheus Moerman Date: Wed, 13 Dec 2023 13:37:54 +0000 Subject: [PATCH] Fixed path definition error in README example Fixed the read file example. The books.xml example xml file is actually contained in the data folder. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ffec4c..5f565c1 100644 --- a/README.md +++ b/README.md @@ -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)