This is an automated email from the ASF dual-hosted git repository.
slawrence pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-sbt.git
The following commit(s) were added to refs/heads/main by this push:
new bca986a Fix typo in README code snippet
bca986a is described below
commit bca986a9cc6f66328032aafef4518cfa52b92d6f
Author: Steve Lawrence <[email protected]>
AuthorDate: Fri Feb 27 14:11:25 2026 -0500
Fix typo in README code snippet
Closes #170
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 69f8b95..969c65f 100644
--- a/README.md
+++ b/README.md
@@ -253,7 +253,7 @@ containing saved parsers could be added to the `test`
classpath like this:
```scala
Test / dependencyClasspath ++= {
val savedParsers = update.value.matching(artifactFilter(`type` = "parser"))
- val savedParserDirs = savedParser.map(_.toParentFile)
+ val savedParserDirs = savedParsers.map(_.getParentFile)
savedParserDirs
}
```