From 130119dff000150104ec34b08cc5d1c3d7a43bcd Mon Sep 17 00:00:00 2001 From: "P.Y. Laligand" Date: Thu, 13 Aug 2015 14:41:55 -0700 Subject: [PATCH] Fixed a typo in the widget tutorial. --- packages/flutter/lib/widgets/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter/lib/widgets/README.md b/packages/flutter/lib/widgets/README.md index 3589c8bf69..989ea1ed1a 100644 --- a/packages/flutter/lib/widgets/README.md +++ b/packages/flutter/lib/widgets/README.md @@ -381,7 +381,7 @@ non-trivial internal state. Initializing internal state in `didMount` is more efficient (and less error-prone) than initializing that state during the component's constructor because parent executes the component's constructor each time the parent rebuilds even though the framework mounts only the first -instance into the widget heiarchy. (Instead of mounting later instances, the +instance into the widget hierarchy. (Instead of mounting later instances, the framework passes them to the original instance in `syncFields` so that the first instance of the component can incorporate the values passed by the parent to the component's constructor.)