Update AL coding guidelines to use PascalCase for variable and function names

- Corrected naming conventions in the AL code style documentation to specify PascalCase instead of camelCase for variables and functions.
- Adjusted examples throughout the documentation to reflect the updated naming conventions.
- Enhanced clarity in performance guidelines by renaming procedures for better understanding.
This commit is contained in:
Dmitry Katson 2025-07-30 22:08:25 +08:00
parent 6b3f522a16
commit 2a805b20dc
6 changed files with 15 additions and 16 deletions

View file

@ -169,7 +169,6 @@ Organize test files to mirror the application structure while maintaining clear
- Use same feature-based organization for tests
- Place shared test utilities in Common folder
- Maintain consistent naming patterns
- When creating test files, mirror the feature organization of the App project but place all tests in the Test project structure
### Examples