We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 083027e commit c40a07aCopy full SHA for c40a07a
scaladoc/src/dotty/tools/scaladoc/tasty/ClassLikeSupport.scala
@@ -525,7 +525,7 @@ trait ClassLikeSupport:
525
experimental: Option[Annotation] = None
526
) = Member(
527
name = symbol.normalizedName,
528
- fullName = symbol.fullName,
+ fullName = if symbol.fullName endsWith "$" then symbol.fullName.dropRight(1) else symbol.fullName,
529
dri = symbol.dri,
530
kind = kind,
531
visibility = symbol.getVisibility(),
0 commit comments