From 15b988e83856a2004344652856e80f3b2f9a7bc2 Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Tue, 26 Apr 2022 12:04:20 +0200 Subject: [PATCH] Fix typeMember/typeMembers documentation Fixes #14901 --- library/src/scala/quoted/Quotes.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/src/scala/quoted/Quotes.scala b/library/src/scala/quoted/Quotes.scala index 08898b4f7a1c..ce524f7166a1 100644 --- a/library/src/scala/quoted/Quotes.scala +++ b/library/src/scala/quoted/Quotes.scala @@ -3878,10 +3878,10 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching => /** Get all non-private methods declared or inherited */ def methodMembers: List[Symbol] - /** Get non-private named methods defined directly inside the class */ + /** Get non-private named type defined directly inside the class */ def declaredType(name: String): List[Symbol] - /** Get all non-private methods defined directly inside the class, excluding constructors */ + /** Get all non-private types defined directly inside the class */ def declaredTypes: List[Symbol] /** Type member with the given name directly declared in the class */