diff --git a/docs/dispensables.md b/docs/dispensables.md index c685436..a1add67 100644 --- a/docs/dispensables.md +++ b/docs/dispensables.md @@ -21,7 +21,7 @@ if (employee.flags and HOURLY_FLAG) and (employee.age > 65): **Good:** ```python -if employee.isEligibleForBenefits(): +if employee.is_eligible_for_benefits(): # do something ```