1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-20 22:17:09 +08:00

fix typo: falgs->flags

This commit is contained in:
codeYu 2020-05-28 12:22:08 +09:00 committed by GitHub
parent 93bbd8b4af
commit 571f0a2d74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -219,7 +219,7 @@ Java 中的注释有三种:
> >
> ```java > ```java
> // check to see if the employee is eligible for full benefits > // check to see if the employee is eligible for full benefits
> if ((employee.falgs & HOURLY_FLAG) && (employee.age > 65)) > if ((employee.flags & HOURLY_FLAG) && (employee.age > 65))
> ``` > ```
> >
> 应替换为 > 应替换为