We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ba5ed3 commit a69843fCopy full SHA for a69843f
assertk/src/jvmMain/kotlin/assertk/assertions/file.kt
@@ -47,7 +47,7 @@ fun Assert<File>.exists() = given { actual ->
47
}
48
49
/**
50
- * Asserts the file does not exists.
+ * Asserts the file does not exist.
51
*/
52
fun Assert<File>.doesNotExist() = given { actual ->
53
if (!actual.exists()) return
assertk/src/jvmMain/kotlin/assertk/assertions/path.kt
@@ -101,7 +101,7 @@ fun Assert<Path>.exists(vararg options: LinkOption) = given { actual ->
101
102
103
104
- * Assert that the path does not exists.
+ * Assert that the path does not exist.
105
*
106
* @param options indicating how symbolic links are handled
107
0 commit comments