Skip to content

Commit 820afae

Browse files
authored
doc(extension-method): add missing verb in generic extensions section
1 parent 64efaa1 commit 820afae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/docs/reference/contextual/extension-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ to the implementation of right binding operators as normal methods.
146146

147147
The `IntOps` examples extended a non generic type.
148148
It is also possible to extend a specific instance of a generic type (e.g. Seq[String] -- see `stringOps` further below).
149-
And also generic types by adding type parameters to an extension method. Examples:
149+
Moreover, it is also possible to extend generic types by adding type parameters to an extension method. Examples:
150150

151151
```scala
152152
def [T](xs: List[T]) second =

0 commit comments

Comments
 (0)