You've already forked v8-code-style
mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2025-12-04 01:33:29 +02:00
475 B
475 B
Documentation comment multi-line description contains parameter definition
Noncompliant Code Example
// Description
//
// Parameters
// Parameter1 - this parameter is part of description
Procedure NonComplaint(Parameter1) Export
// empty
EndProcedure
Compliant Solution
// Description
//
// Parameters:
// Parameter1 - this parameter is the section of parameters
Procedure Complaint(Parameters) Export
// empty
EndProcedure