From 3a88a973a37f81d6da8d3fcb68f2ce8cb4286693 Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Fri, 17 Jun 2016 10:42:57 -0700 Subject: [PATCH] Trivial but confusing typo in SynchronousFuture docs (#4599) --- packages/flutter/lib/src/foundation/synchronous_future.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/lib/src/foundation/synchronous_future.dart b/packages/flutter/lib/src/foundation/synchronous_future.dart index fce0430824..e5c0abb5f7 100644 --- a/packages/flutter/lib/src/foundation/synchronous_future.dart +++ b/packages/flutter/lib/src/foundation/synchronous_future.dart @@ -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 implements Future { /// Creates a synchronous future. ///