From a1af669aba1ca9a429c41aa9118593690ffb3c62 Mon Sep 17 00:00:00 2001 From: "Jeoffrey Fischer [SSW]" <106663901+jeoffreyfischer@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:59:33 +1100 Subject: [PATCH 1/2] Added authors --- rules/verbs-for-method-names/rule.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rules/verbs-for-method-names/rule.md b/rules/verbs-for-method-names/rule.md index a529d3965e4..587f7d41c11 100644 --- a/rules/verbs-for-method-names/rule.md +++ b/rules/verbs-for-method-names/rule.md @@ -8,6 +8,10 @@ created: 2024-11-05T00:00:00.0000000Z authors: - title: Matt Goldman url: https://ssw.com.au/people/matt-goldman + - title: Jeoffrey Fischer + url: https://ssw.com.au/people/jeoffrey-fischer + - title: Daniel Mackay + url: https://ssw.com.au/people/daniel-mackay related: - clear-meaningful-names - nouns-for-class-names From c5001cb157aa683190d76b4854a1ae9fd41e54ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 21 Nov 2024 06:01:12 +0000 Subject: [PATCH 2/2] Auto-fix Markdown files --- rules/verbs-for-method-names/rule.md | 1 + 1 file changed, 1 insertion(+) diff --git a/rules/verbs-for-method-names/rule.md b/rules/verbs-for-method-names/rule.md index 587f7d41c11..d34ad57c8d7 100644 --- a/rules/verbs-for-method-names/rule.md +++ b/rules/verbs-for-method-names/rule.md @@ -30,6 +30,7 @@ Code becomes easier to understand when names align closely with their meaning. S ## What is a verb? + A verb is a word that describes an action or process—something that’s done. Examples include walk, run, think, listen, and breathe, as well as process, calculate, send, and save. While your method names shouldn’t all be single verbs (since that’s often too vague), they should be verb-based, using a verb as the foundation of their meaning. :::greybox