adding missing fullstops in to docs

This commit is contained in:
Adam Brown 2022-08-18 11:51:23 +01:00
parent 8b70f3a3b9
commit 106fa1b1d5

View File

@ -17,9 +17,9 @@
package im.vector.app.core.extensions package im.vector.app.core.extensions
/** /**
* Recursive through the throwable and its causes for the given predicate * Recursive through the throwable and its causes for the given predicate.
* *
* @return true when the predicate finds a match * @return true when the predicate finds a match.
*/ */
tailrec fun Throwable?.crawlCausesFor(predicate: (Throwable) -> Boolean): Boolean { tailrec fun Throwable?.crawlCausesFor(predicate: (Throwable) -> Boolean): Boolean {
return when { return when {