File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
scaladoc/src/dotty/tools/scaladoc Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ object Scaladoc:
43
43
docCanonicalBaseUrl : String = " " ,
44
44
documentSyntheticTypes : Boolean = false ,
45
45
snippetCompiler : List [String ] = Nil ,
46
- noLinkWarnings : Boolean = false ,
46
+ includeNoLinkWarnings : Boolean = false ,
47
47
versionsDictionaryUrl : Option [String ] = None ,
48
48
generateInkuire : Boolean = false ,
49
49
apiSubdirectory : Boolean = false ,
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ abstract class MarkupConversion[T](val repr: Repr)(using dctx: DocContext) {
116
116
val txt = s " No DRI found for query "
117
117
val msg = s " $txt: $queryStr"
118
118
119
- if (! summon[DocContext ].args.noLinkWarnings ) then
119
+ if (! summon[DocContext ].args.includeNoLinkWarnings ) then
120
120
121
121
report.warning(msg, srcPos)
122
122
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ trait MemberLookup {
86
86
res
87
87
catch
88
88
case e : Exception =>
89
- if (! summon[DocContext ].args.noLinkWarnings ) then
89
+ if (! summon[DocContext ].args.includeNoLinkWarnings ) then
90
90
val msg = s " Unable to find a link for ${query} ${ownerOpt.fold(" " )(o => " in " + o.name)}"
91
91
report.warn(msg, e)
92
92
None
You can’t perform that action at this time.
0 commit comments