Skip to content

Commit

Permalink
docs: Improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
panpf committed Aug 2, 2024
1 parent 5dd7809 commit af83b19
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ fun newKotlinResourceUri(resourceName: String): String =

/**
* Check if the uri is a Kotlin resource uri
*
* Sample: 'file:///kotlin_resource/test.png'
*/
fun isKotlinResourceUri(uri: Uri): Boolean =
KotlinResourceUriFetcher.SCHEME.equals(uri.scheme, ignoreCase = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ fun newKotlinResourceUri(resourceName: String): String =

/**
* Check if the uri is a Kotlin resource uri
*
* Sample: 'file:///kotlin_resource/test.png'
*/
fun isKotlinResourceUri(uri: Uri): Boolean =
KotlinResourceUriFetcher.SCHEME.equals(uri.scheme, ignoreCase = true)
Expand Down

0 comments on commit af83b19

Please sign in to comment.