mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2024-12-13 13:48:40 +02:00
26 lines
312 B
Markdown
26 lines
312 B
Markdown
|
# 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
|
||
|
|