Skip to content

Commit c40a07a

Browse files
committed
Don't render the "$" for module
1 parent 083027e commit c40a07a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scaladoc/src/dotty/tools/scaladoc/tasty/ClassLikeSupport.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ trait ClassLikeSupport:
525525
experimental: Option[Annotation] = None
526526
) = Member(
527527
name = symbol.normalizedName,
528-
fullName = symbol.fullName,
528+
fullName = if symbol.fullName endsWith "$" then symbol.fullName.dropRight(1) else symbol.fullName,
529529
dri = symbol.dri,
530530
kind = kind,
531531
visibility = symbol.getVisibility(),

0 commit comments

Comments
 (0)