Commit 3a88a973 authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

Trivial but confusing typo in SynchronousFuture docs (#4599)

parent 2de2ce35
......@@ -12,8 +12,8 @@ import 'dart:async';
/// ⚠ This class is useful in cases where you want to expose a single API, where
/// you normally want to have everything execute synchronously, but where on
/// rare occasions you want the ability to switch to an asynchronous model. **In
/// general use of this class should be avoided as it is very easy difficult to
/// debug such bimodal behavior.**
/// general use of this class should be avoided as it is very difficult to debug
/// such bimodal behavior.**
class SynchronousFuture<T> implements Future<T> {
/// Creates a synchronous future.
///
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment