@@ -1246,8 +1246,8 @@ abstract class State<T extends StatefulWidget> extends Diagnosticable {
1246
1246
/// ### Why is the [build] method on [State] , and not [StatefulWidget] ?
1247
1247
///
1248
1248
/// Putting a `Widget build(BuildContext context)` method on [State] rather
1249
- /// putting a `Widget build(BuildContext context, State state)` method on
1250
- /// [StatefulWidget] gives developers more flexibility when subclassing
1249
+ /// than putting a `Widget build(BuildContext context, State state)` method
1250
+ /// on [StatefulWidget] gives developers more flexibility when subclassing
1251
1251
/// [StatefulWidget] .
1252
1252
///
1253
1253
/// For example, [AnimatedWidget] is a subclass of [StatefulWidget] that
@@ -2569,7 +2569,7 @@ class BuildOwner {
2569
2569
/// state. When this happens, the framework will call [update] with the new
2570
2570
/// widget. The new widget will always have the same [runtimeType] and key as
2571
2571
/// old widget. If the parent wishes to change the [runtimeType] or key of
2572
- /// the widget at this location in the tree, can do so by unmounting this
2572
+ /// the widget at this location in the tree, it can do so by unmounting this
2573
2573
/// element and inflating the new widget at this location.
2574
2574
/// * At some point, an ancestor might decide to remove this element (or an
2575
2575
/// intermediate ancestor) from the tree, which the ancestor does by calling
@@ -4411,7 +4411,7 @@ class InheritedElement extends ProxyElement {
4411
4411
///
4412
4412
/// Subclasses can manage these values with [updateDependencies]
4413
4413
/// so that they can selectively rebuild dependents in
4414
- /// [notifyDependents ] .
4414
+ /// [notifyDependent ] .
4415
4415
///
4416
4416
/// This method is typically only called in overrides of [updateDependencies] .
4417
4417
///
@@ -4438,7 +4438,7 @@ class InheritedElement extends ProxyElement {
4438
4438
/// null by default so that dependent elements are rebuilt unconditionally.
4439
4439
///
4440
4440
/// Subclasses can manage these values with [updateDependencies]
4441
- /// so that they can selectively rebuild dependents in [notifyDependents ] .
4441
+ /// so that they can selectively rebuild dependents in [notifyDependent ] .
4442
4442
///
4443
4443
/// This method is typically only called in overrides of [updateDependencies] .
4444
4444
///
@@ -4468,7 +4468,7 @@ class InheritedElement extends ProxyElement {
4468
4468
/// [dependent] .
4469
4469
///
4470
4470
/// Subclasses can manage their own dependencies values so that they
4471
- /// can selectively rebuild dependents in [notifyDependents ] .
4471
+ /// can selectively rebuild dependents in [notifyDependent ] .
4472
4472
///
4473
4473
/// See also:
4474
4474
///
0 commit comments