1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2024-12-13 05:35:39 +02:00
v8-code-style/bundles/com.e1c.v8codestyle.bsl/markdown/doc-comment-field-in-description-suggestion.md

512 B

Documentation comment multi-line description contains field definition

Noncompliant Code Example


// Parameters
//  Parameters - Structure - description
//  * Key1 - this field is part of description
Procedure NonComplaint(Parameters) Export
	// empty
EndProcedure

Compliant Solution


// Parameters:
//  Parameters - Structure - description:
//  * Key1 - Number - this field is extension of the structure
Procedure Complaint(Parameters) Export
	// empty
EndProcedure

See