Fixes a minor typo in the documentation of the StreamTransformer class.

Change-Id: I4d1142d14cf01d2b8c04d6bf41f9bac7c86c0d5a
Reviewed-on: https://dart-review.googlesource.com/68880
Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
Commit-Queue: Daniel Hillerström <hillerstrom@google.com>
This commit is contained in:
Daniel Hillerström 2018-08-08 10:53:49 +00:00 committed by commit-bot@chromium.org
parent 1b6992b915
commit 84d8887d3f

View file

@ -2008,7 +2008,7 @@ abstract class StreamTransformer<S, T> {
Stream<T> bind(Stream<S> stream);
/**
* Provides a `StreamTrasformer<RS, RT>` view of this stream transformer.
* Provides a `StreamTransformer<RS, RT>` view of this stream transformer.
*
* The resulting transformer will check at run-time that all data events
* of the stream it transforms are actually instances of [S],