word revise

This commit is contained in:
AlightY 2020-09-08 18:48:39 +08:00 committed by GitHub
parent 8e3e328672
commit 5de88be198
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,7 +81,7 @@
### Java 用户的使用指南
- Java 中的「方法」在 Kotlin 中均被为「函数」。
- Java 中的「方法」在 Kotlin 中均被为「函数」。
- Kotlin 默认的访问权限是 `public`。如 Kotlin `class Test` 相当于 Java 的 `public class Test {}`
- Kotlin 的函数定义 `fun test(int: Int): String` 相当于 Java 的方法定义 `public String test(int int)`