1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-01-08 17:15:30 +02:00
v8-code-style/bundles/com.e1c.v8codestyle.bsl/markdown/doc-comment-field-name.md

384 B

Documentation comment field is correct name

Noncompliant Code Example


// Parameters:
//  Parameters - Structure:
//  * 1Name - incorrect name
//  
Procedure NonComplaint(Parameters)
	
EndProcedure

Compliant Solution


// Parameters:
//  Parameters - Structure:
//  * Name - correct name
//  
Procedure Complaint(Parameters)
	
EndProcedure

See