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-description-ends-on-dot.md

312 B

Documentation comment multi-line description ends on dot

Noncompliant Code Example

// First line
// second line
Procedure NonComplaint() Export
	// empty
EndProcedure

Compliant Solution

// First line
// second line.
Procedure Complaint() Export
	// empty
EndProcedure

See