Skip to content

Commit 00f49b6

Browse files
author
John Messerly
committed
Merge pull request #431 from dart-lang/generic-method-wording
fix a typo in generic method docs
2 parents 731dc06 + 33c186f commit 00f49b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/dev_compiler/GENERIC_METHODS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ mode tools, but will be interpreted as `T` by strong mode. For example:
7474
// In strong mode, the parameter x will have type S, and the return type will
7575
// be S
7676
// In normal mode, the parameter x will have type dynamic, and the return
77-
// type will be S.
77+
// type will be dynamic.
7878
dynamic/*=S*/ foo/*<S>*/(dynamic/*=S*/ x) { return x; }
7979
```
8080

0 commit comments

Comments
 (0)