From 8a00318e894e6338973b5f74a6661df2f4b2fb5b Mon Sep 17 00:00:00 2001 From: Michael Goderbauer Date: Fri, 20 Jul 2018 10:51:41 -0700 Subject: [PATCH] Whitespace fixes to make Travis happy (#19611) Follow-up to https://github.com/flutter/flutter/pull/18562, which passed Travis before the check was added. --- packages/flutter/lib/src/material/text_field.dart | 6 +++--- packages/flutter/lib/src/widgets/editable_text.dart | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/flutter/lib/src/material/text_field.dart b/packages/flutter/lib/src/material/text_field.dart index 1dfcd12b88e..9edfced28c7 100644 --- a/packages/flutter/lib/src/material/text_field.dart +++ b/packages/flutter/lib/src/material/text_field.dart @@ -163,16 +163,16 @@ class TextField extends StatefulWidget { /// Defaults to [TextInputAction.done]. Must not be null. final TextInputAction textInputAction; - /// Configures how the platform keyboard will select an uppercase or + /// Configures how the platform keyboard will select an uppercase or /// lowercase keyboard. /// /// Only supports text keyboards, other keyboard types will ignore this /// configuration. Capitalization is locale-aware. /// /// Defaults to [TextCapitalization.none]. Must not be null. - /// + /// /// See also: - /// + /// /// * [TextCapitalization], for a description of each capitalization behavior. final TextCapitalization textCapitalization; diff --git a/packages/flutter/lib/src/widgets/editable_text.dart b/packages/flutter/lib/src/widgets/editable_text.dart index 76e9cc00013..682f79a2159 100644 --- a/packages/flutter/lib/src/widgets/editable_text.dart +++ b/packages/flutter/lib/src/widgets/editable_text.dart @@ -272,16 +272,16 @@ class EditableText extends StatefulWidget { /// Defaults to the ambient [Directionality], if any. final TextDirection textDirection; - /// Configures how the platform keyboard will select an uppercase or + /// Configures how the platform keyboard will select an uppercase or /// lowercase keyboard. /// /// Only supports text keyboards, other keyboard types will ignore this /// configuration. Capitalization is locale-aware. - /// + /// /// Defaults to [TextCapitalization.none]. Must not be null. - /// + /// /// See also: - /// + /// /// * [TextCapitalization], for a description of each capitalization behavior. final TextCapitalization textCapitalization;