Skip to content

Commit

Permalink
Merge pull request #431 from dart-lang/generic-method-wording
Browse files Browse the repository at this point in the history
fix a typo in generic method docs
  • Loading branch information
John Messerly committed Jan 28, 2016
2 parents 731dc06 + 33c186f commit 00f49b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/dev_compiler/GENERIC_METHODS.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ mode tools, but will be interpreted as `T` by strong mode. For example:
// In strong mode, the parameter x will have type S, and the return type will
// be S
// In normal mode, the parameter x will have type dynamic, and the return
// type will be S.
// type will be dynamic.
dynamic/*=S*/ foo/*<S>*/(dynamic/*=S*/ x) { return x; }
```

Expand Down

0 comments on commit 00f49b6

Please sign in to comment.