mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2024-12-13 05:35:39 +02:00
512 B
512 B
Documentation comment link referenced object exists
Noncompliant Code Example
// Parameters:
// Parameters - See Complaint.UnknownParameter
Procedure NonComplaint(Parameters) Export
// empty
EndProcedure
Compliant Solution
// See word - this "word" is not link in description
//
// Parameters:
// Parameters - Here valid web-link See https://1c.ru
// LinkToMethod - See NonComplaint()
Procedure Complaint(Parameters, LinkToMethod) Export
// empty
EndProcedure