@@ -939,7 +939,9 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
939
939
end extension
940
940
end NamedArgMethods
941
941
942
- /** Tree an application of arguments. It represents a single list of arguments, multiple argument lists will have nested `Apply`s */
942
+ /** Tree representing an application of arguments.
943
+ * It represents a single list of arguments, multiple argument lists will have nested `Apply`s
944
+ */
943
945
type Apply <: Term
944
946
945
947
/** `TypeTest` that allows testing at runtime in a pattern match if a `Tree` is an `Apply` */
@@ -968,7 +970,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
968
970
extension (self : Apply )
969
971
/** The `fun` part of an (implicit) application like `fun(args)`
970
972
*
971
- * It maybe a partially applied method:
973
+ * It may be a partially applied method:
972
974
* ```scala
973
975
* def f(x1: Int)(x2: Int) = ...
974
976
* f(1)(2)
@@ -980,7 +982,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
980
982
def fun : Term
981
983
/** The arguments (implicitly) passed to the method
982
984
*
983
- * The `Apply` maybe a partially applied method:
985
+ * The `Apply` may be a partially applied method:
984
986
* ```scala
985
987
* def f(x1: Int)(x2: Int) = ...
986
988
* f(1)(2)
@@ -993,7 +995,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
993
995
end extension
994
996
end ApplyMethods
995
997
996
- /** Tree an application of type arguments */
998
+ /** Tree representing an application of type arguments */
997
999
type TypeApply <: Term
998
1000
999
1001
/** `TypeTest` that allows testing at runtime in a pattern match if a `Tree` is a `TypeApply` */
@@ -1022,7 +1024,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
1022
1024
extension (self : TypeApply )
1023
1025
/** The `fun` part of an (inferred) type application like `fun[Args]`
1024
1026
*
1025
- * It maybe a partially applied method:
1027
+ * It may be a partially applied method:
1026
1028
* ```scala
1027
1029
* extension (x: Int) def f[T](y: T) = ...
1028
1030
* // represented as
@@ -1038,7 +1040,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
1038
1040
def fun : Term
1039
1041
/** The (inferred) type arguments passed to the method
1040
1042
*
1041
- * The `TypeApply` maybe a partially applied method:
1043
+ * The `TypeApply` may be a partially applied method:
1042
1044
* ```scala
1043
1045
* extension (x: Int) def f[T](y: T) = ...
1044
1046
* // represented as
@@ -1934,9 +1936,9 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
1934
1936
1935
1937
/** Type tree representing wildcard type bounds written in the source.
1936
1938
* The wildcard type `_` (for example in in `List[_]`) will be a type tree that
1937
- * represents a type but has `TypeBound`a inside.
1939
+ * represents a type but has `TypeBounds` inside.
1938
1940
*/
1939
- type WildcardTypeTree <: Tree
1941
+ type WildcardTypeTree <: Tree
1940
1942
1941
1943
/** `TypeTest` that allows testing at runtime in a pattern match if a `Tree` is a `WildcardTypeTree` */
1942
1944
given WildcardTypeTreeTypeTest : TypeTest [Tree , WildcardTypeTree ]
@@ -3341,7 +3343,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
3341
3343
// ///////////
3342
3344
3343
3345
/** Symbol of a definition.
3344
- * Then can be compared with == to know if the definition is the same.
3346
+ * Symbols can be compared with `==` to know if two definitions are the same.
3345
3347
*/
3346
3348
type Symbol <: AnyRef
3347
3349
@@ -4097,7 +4099,7 @@ trait Quotes { self: runtime.QuoteUnpickler & runtime.QuoteMatching =>
4097
4099
// REPORTING //
4098
4100
// /////////////
4099
4101
4100
- /** Module containing error and waring reporting. */
4102
+ /** Module containing error and warning reporting. */
4101
4103
val report : reportModule
4102
4104
4103
4105
/** Methods of the module object `val report` */
0 commit comments