From e9d50f8aeb75a173bf5576d475e474ead0da7e43 Mon Sep 17 00:00:00 2001 From: Robert Felker Date: Fri, 26 May 2017 19:32:06 +0200 Subject: [PATCH] Typo to associated (#10340) --- packages/flutter/lib/src/widgets/framework.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/src/widgets/framework.dart b/packages/flutter/lib/src/widgets/framework.dart index 97bc40d903..c1278c8a4e 100644 --- a/packages/flutter/lib/src/widgets/framework.dart +++ b/packages/flutter/lib/src/widgets/framework.dart @@ -22,7 +22,7 @@ export 'package:flutter/rendering.dart' show RenderObject, RenderBox, debugDumpR /// A [Key] is an identifier for [Widget]s and [Element]s. /// /// A new widget will only be used to update an existing element if its key is -/// the same as the key of the current widget associted with the element. +/// the same as the key of the current widget associated with the element. /// /// Keys must be unique amongst the [Element]s with the same parent. ///