1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2024-12-13 13:48:40 +02:00
v8-code-style/bundles/com.e1c.v8codestyle.bsl/markdown/doc-comment-description-ends-on-dot.md

26 lines
312 B
Markdown
Raw Normal View History

# Documentation comment multi-line description ends on dot
## Noncompliant Code Example
```bsl
// First line
// second line
Procedure NonComplaint() Export
// empty
EndProcedure
```
## Compliant Solution
```bsl
// First line
// second line.
Procedure Complaint() Export
// empty
EndProcedure
```
## See