All module variables and export variables must have comments.
Incorrect:
Var Context;
Correct:
Var Context; // Detailed description that explains the purpose of the variable
// Detailed description that explains the purpose of the variable
Var Context;
- Source: Standard: Module structure (RU)