Skip to content

Commit

Permalink
Fix typos in README
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed May 1, 2023
1 parent 55c5999 commit 9ca8a5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# class-path-util

Utility library to parse class path inputs, and return the corresponding files. It
handles simple blobs (`/dir/*`, `/dir/*.jar`) and Java properties (`${spark.home}/jars/*`).
handles simple globs (`/dir/*`, `/dir/*.jar`) and Java properties (`${spark.home}/jars/*`).

## Usage

Expand All @@ -17,5 +17,5 @@ import coursier.cputil.ClassPathUtil

Use it like
```scala
ClassPathUtil.classPath("/foo/${thing}/*;/a/b.jar") // Seq[java.nio.file.Path]
ClassPathUtil.classPath("/foo/${thing}/*:/a/b.jar") // Seq[java.nio.file.Path]
```

0 comments on commit 9ca8a5d

Please sign in to comment.