Skip to content

Commit

Permalink
Fixed invoke
Browse files Browse the repository at this point in the history
  • Loading branch information
basshelal committed Jul 29, 2019
1 parent 2dace98 commit 1ca4517
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ public class UnsplashPhotoPicker
* }
* ```
*/
public inline operator fun invoke(apply: UnsplashPhotoPicker.() -> Any) = this.apply { apply() }
public inline operator fun invoke(apply: UnsplashPhotoPicker.() -> Unit) = this.apply { apply() }

companion object {

Expand Down

0 comments on commit 1ca4517

Please sign in to comment.