From 8df2f83de008ebd81541e80d3162cf06b5d50ef1 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Fri, 1 Mar 2013 23:10:33 +0400 Subject: [PATCH] Fixed typo. --- libraries/stdlib/src/kotlin/io/Files.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/src/kotlin/io/Files.kt b/libraries/stdlib/src/kotlin/io/Files.kt index 890f2ce6e23..c246bb76856 100644 --- a/libraries/stdlib/src/kotlin/io/Files.kt +++ b/libraries/stdlib/src/kotlin/io/Files.kt @@ -26,7 +26,7 @@ inline val File.directory: File get() = if (this.isDirectory()) this else this.getParentFile()!! /** - * Returns the canoncial path of the file + * Returns the canonical path of the file */ inline val File.canonicalPath: String get() = getCanonicalPath()