Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-09-23 23:24:05 +05:30
parent 93930ff83a
commit 794c2f3597
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ Kotlin:
```kotlin
object StringUtils {
// I'll cover this declaration style too. It's just the first post!
fun normalizePath(str: String) = str.replace("/document/primary:", "/sdcard/")
fun normalizePath(str: String): String = str.replace("/document/primary:", "/sdcard/")
}
```