From 2f96d1f0263dfdaf9f1c8d4f0fa054839342e350 Mon Sep 17 00:00:00 2001 From: Tom Rivoire Date: Thu, 3 Sep 2020 00:41:19 +0200 Subject: [PATCH] Fix contentPadding documentation accent (#65094) --- packages/flutter/lib/src/material/input_decorator.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter/lib/src/material/input_decorator.dart b/packages/flutter/lib/src/material/input_decorator.dart index a08494f0539..4a726d5be38 100644 --- a/packages/flutter/lib/src/material/input_decorator.dart +++ b/packages/flutter/lib/src/material/input_decorator.dart @@ -2765,10 +2765,10 @@ class InputDecoration { /// /// If `isOutline` property of [border] is false and if [filled] is true then /// `contentPadding` is `EdgeInsets.fromLTRB(12, 8, 12, 8)` when [isDense] - /// is true and `EdgeInsets.fromLTRB(12, 12, 12, 12)` when [isDense] is false`. + /// is true and `EdgeInsets.fromLTRB(12, 12, 12, 12)` when [isDense] is false. /// If `isOutline` property of [border] is false and if [filled] is false then /// `contentPadding` is `EdgeInsets.fromLTRB(0, 8, 0, 8)` when [isDense] is - /// true and `EdgeInsets.fromLTRB(0, 12, 0, 12)` when [isDense] is false`. + /// true and `EdgeInsets.fromLTRB(0, 12, 0, 12)` when [isDense] is false. /// /// If `isOutline` property of [border] is true then `contentPadding` is /// `EdgeInsets.fromLTRB(12, 20, 12, 12)` when [isDense] is true