diff options
author | robot-piglet <[email protected]> | 2025-08-07 19:24:44 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-08-07 19:36:57 +0300 |
commit | 319c53daa4d3137edd9f6938531c983331ae730e (patch) | |
tree | b5bb9e6f5ec328a4547889f0c7f6e7b6813ace1b /yql/essentials/utils/docs/verification.cpp | |
parent | d74a3f4e813af8c964567dfd89f725ed81ee141c (diff) |
Intermediate changes
commit_hash:da32df476c05ee8928d99ec0d784ed2e3b929624
Diffstat (limited to 'yql/essentials/utils/docs/verification.cpp')
-rw-r--r-- | yql/essentials/utils/docs/verification.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yql/essentials/utils/docs/verification.cpp b/yql/essentials/utils/docs/verification.cpp index d8d68f9f486..0eaedc2a3b4 100644 --- a/yql/essentials/utils/docs/verification.cpp +++ b/yql/essentials/utils/docs/verification.cpp @@ -78,7 +78,9 @@ namespace NYql::NDocs { !IsLikelyDocumentedAt(section->Body, name)) { report[EFame::BadLinked][std::move(name)] = TStringBuilder() - << "Absent at section '" << target << "'"; + << "Absent at section '" << target << "', " + << "section header is '" << section->Header.Content << "', " + << "section prefix is '" << TStringBuf(section->Body).SubString(0, 32) << "'"; return; } |