Skip to content

Commit dca4bb1

Browse files
Merge pull request #15034 from dotty-staging/fix-14901
Fix typeMember/typeMembers documentation
2 parents f8e5203 + 15b988e commit dca4bb1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/src/scala/quoted/Quotes.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3878,10 +3878,10 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
38783878
/** Get all non-private methods declared or inherited */
38793879
def methodMembers: List[Symbol]
38803880

3881-
/** Get non-private named methods defined directly inside the class */
3881+
/** Get non-private named type defined directly inside the class */
38823882
def declaredType(name: String): List[Symbol]
38833883

3884-
/** Get all non-private methods defined directly inside the class, excluding constructors */
3884+
/** Get all non-private types defined directly inside the class */
38853885
def declaredTypes: List[Symbol]
38863886

38873887
/** Type member with the given name directly declared in the class */

0 commit comments

Comments
 (0)