From 4bc00df7f68e27c590652f980ea49a801ce70df8 Mon Sep 17 00:00:00 2001 From: Michael 'afrolion' Perrotte Date: Wed, 16 Nov 2016 01:24:28 -0500 Subject: [PATCH] fixed typo (#6888) `[IconButton]` is referenced as singular everywhere else, so the _most correct_ version would be singular (`[IconButton]`) with the `s` outside of the brackets. --- packages/flutter/lib/src/material/app_bar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/material/app_bar.dart b/packages/flutter/lib/src/material/app_bar.dart index a1c866abfa..8127b2abdb 100644 --- a/packages/flutter/lib/src/material/app_bar.dart +++ b/packages/flutter/lib/src/material/app_bar.dart @@ -108,7 +108,7 @@ class _AppBarExpandedHeight extends InheritedWidget { /// /// An app bar consists of a toolbar and potentially other widgets, such as a /// [TabBar] and a [FlexibleSpaceBar]. App bars typically expose one or more -/// common actions with [IconButtons]s which are optionally followed by a +/// common actions with [IconButton]s which are optionally followed by a /// [PopupMenuButton] for less common operations. /// /// App bars are most commonly used in the [Scaffold.appBar] property, which