aboutsummaryrefslogtreecommitdiff
path: root/stage1
diff options
context:
space:
mode:
Diffstat (limited to 'stage1')
-rw-r--r--stage1/cbt.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/stage1/cbt.scala b/stage1/cbt.scala
index 78015b6..8564695 100644
--- a/stage1/cbt.scala
+++ b/stage1/cbt.scala
@@ -16,7 +16,7 @@ object `package`{
implicit class FileExtensionMethods( file: File ){
def ++( s: String ): File = {
if(s endsWith "/") throw new Exception(
- """Trying to append a String that ends in "/" to a File would loose it. Use .stripSuffix("/") if you need to."""
+ """Trying to append a String that ends in "/" to a File would loose the trailing "/". Use .stripSuffix("/") if you need to."""
)
new File( file.toString ++ s )
}