Skip to content

Commit a69843f

Browse files
Gooolerevant
authored andcommitted
Fix typo for doesNotExist
1 parent 6ba5ed3 commit a69843f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

assertk/src/jvmMain/kotlin/assertk/assertions/file.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fun Assert<File>.exists() = given { actual ->
4747
}
4848

4949
/**
50-
* Asserts the file does not exists.
50+
* Asserts the file does not exist.
5151
*/
5252
fun Assert<File>.doesNotExist() = given { actual ->
5353
if (!actual.exists()) return

assertk/src/jvmMain/kotlin/assertk/assertions/path.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ fun Assert<Path>.exists(vararg options: LinkOption) = given { actual ->
101101
}
102102

103103
/**
104-
* Assert that the path does not exists.
104+
* Assert that the path does not exist.
105105
*
106106
* @param options indicating how symbolic links are handled
107107
*/

0 commit comments

Comments
 (0)