diff --git a/Detailed-Topics/Paths.md b/Detailed-Topics/Paths.md index 757ecc0..b9e7c53 100644 --- a/Detailed-Topics/Paths.md +++ b/Detailed-Topics/Paths.md @@ -23,7 +23,7 @@ The `file` method is an alias for the single-argument `File` constructor to simp val source: File = file("/home/user/code/A.scala") ``` -Additionally, sbt augments File with a `/` method, which is an alias for the two-argument `File` construtor for building up a path: +Additionally, sbt augments File with a `/` method, which is an alias for the two-argument `File` constructor for building up a path: ```scala def readme(base: File): File = base / "README"