From 8b7b7569ada271985e6f93533f9811b2e8363192 Mon Sep 17 00:00:00 2001 From: Shahrokh Bahtooei <42028078+ShahrokhBahtooei@users.noreply.github.com> Date: Thu, 29 Oct 2020 16:13:34 +0330 Subject: [PATCH] Use snake_case instead of camelCase for a function --- docs/dispensables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ```