1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-02-01 13:27:47 +02:00

33 lines
384 B
Markdown
Raw Normal View History

# Documentation comment field is correct name
## Noncompliant Code Example
```bsl
// Parameters:
// Parameters - Structure:
// * 1Name - incorrect name
//
Procedure NonComplaint(Parameters)
EndProcedure
```
## Compliant Solution
```bsl
// Parameters:
// Parameters - Structure:
// * Name - correct name
//
Procedure Complaint(Parameters)
EndProcedure
```
## See