Fix tests on Linux

This commit is contained in:
Max Howell
2019-01-17 18:23:22 -05:00
parent cac06d89fb
commit b4c92f86dc
6 changed files with 29 additions and 14 deletions

View File

@@ -4,6 +4,8 @@ A file-system pathing library focused on developer experience and robust
endresults.
```swift
import Path
// convenient static members
let home = Path.home
@@ -26,7 +28,7 @@ try Path.root.join("foo").copy(into: Path.root.mkdir("bar"))
// were meant to be directory destinations
```
Paths are just string representations, there *may not* be a real file there.
Paths are just string representations, there *might not* be a real file there.
# Support mxcl