Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 526 Bytes

FunctionNameStartsWithGet.md

File metadata and controls

19 lines (13 loc) · 526 Bytes

Function name shouldn't start with "Получить" (FunctionNameStartsWithGet)

Description

In the name of the function, the word get superfluous since function by definition returns a value.

Examples

// Incorrect: 
Function GetNameByCode()

// Correct: 
Function NameByCode()

Sources