Skip to content

Commit

Permalink
[CHORE/#17] 함수명 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonsuKang committed Jun 7, 2024
1 parent abc4d85 commit a075d09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/sopt/now/compose/utils/ToastUtil.kt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import android.content.Context
import android.widget.Toast

object ToastUtil {
fun show(context: Context, message: String, duration: Int = Toast.LENGTH_SHORT) {
fun toast(context: Context, message: String, duration: Int = Toast.LENGTH_SHORT) {
Toast.makeText(context, message, duration).show()
}
}

0 comments on commit a075d09

Please sign in to comment.