From 0517afffe4951d0085dfae4f7eda4dbd2b52780f Mon Sep 17 00:00:00 2001 From: waywardmonkeys Date: Thu, 1 Dec 2011 07:24:19 -0800 Subject: [PATCH] Fix spelling error. --- Detailed-Topics/Paths.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"