Unverified Commit 19227a99 authored by Yegor's avatar Yegor Committed by GitHub

fix miscellaneous typos in dartdocs (#12801)

* fix miscellaneous typos in dartdocs

* moar typos
parent cb2cfac0
...@@ -12,7 +12,7 @@ import 'theme.dart'; ...@@ -12,7 +12,7 @@ import 'theme.dart';
/// Typically used to add a one or two line header or footer on a [GridTile]. /// Typically used to add a one or two line header or footer on a [GridTile].
/// ///
/// For a one-line header, include a [title] widget. To add a second line, also /// For a one-line header, include a [title] widget. To add a second line, also
/// include a [subtitle] wiget. Use [leading] or [trailing] to add an icon. /// include a [subtitle] widget. Use [leading] or [trailing] to add an icon.
/// ///
/// See also: /// See also:
/// ///
......
...@@ -599,7 +599,7 @@ abstract class RenderViewportBase<ParentDataClass extends ContainerParentDataMix ...@@ -599,7 +599,7 @@ abstract class RenderViewportBase<ParentDataClass extends ContainerParentDataMix
/// `child`. /// `child`.
/// ///
/// See also [computeAbsolutePaintOffset], which computes the paint offset /// See also [computeAbsolutePaintOffset], which computes the paint offset
/// from an explict layout offset and growth direction instead of using the /// from an explicit layout offset and growth direction instead of using the
/// values computed for the child during layout. /// values computed for the child during layout.
@protected @protected
Offset paintOffsetOf(RenderSliver child); Offset paintOffsetOf(RenderSliver child);
......
...@@ -77,7 +77,7 @@ abstract class LocalKey extends Key { ...@@ -77,7 +77,7 @@ abstract class LocalKey extends Key {
/// ///
/// See also the discussion at [Widget.key]. /// See also the discussion at [Widget.key].
class ValueKey<T> extends LocalKey { class ValueKey<T> extends LocalKey {
/// Creates a key that delgates its [operator==] to the given value. /// Creates a key that delegates its [operator==] to the given value.
const ValueKey(this.value); const ValueKey(this.value);
/// The value to which this key delegates its [operator==] /// The value to which this key delegates its [operator==]
...@@ -302,7 +302,7 @@ abstract class GlobalKey<T extends State<StatefulWidget>> extends Key { ...@@ -302,7 +302,7 @@ abstract class GlobalKey<T extends State<StatefulWidget>> extends Key {
/// ///
/// The current state is null if (1) there is no widget in the tree that /// The current state is null if (1) there is no widget in the tree that
/// matches this global key, (2) that widget is not a [StatefulWidget], or the /// matches this global key, (2) that widget is not a [StatefulWidget], or the
/// assoicated [State] object is not a subtype of `T`. /// associated [State] object is not a subtype of `T`.
T get currentState { T get currentState {
final Element element = _currentElement; final Element element = _currentElement;
if (element is StatefulElement) { if (element is StatefulElement) {
...@@ -930,7 +930,7 @@ typedef void StateSetter(VoidCallback fn); ...@@ -930,7 +930,7 @@ typedef void StateSetter(VoidCallback fn);
/// update the [widget] property to refer to the new widget and then call the /// update the [widget] property to refer to the new widget and then call the
/// [didUpdateWidget] method with the previous widget as an argument. [State] /// [didUpdateWidget] method with the previous widget as an argument. [State]
/// objects should override [didUpdateWidget] to respond to changes in their /// objects should override [didUpdateWidget] to respond to changes in their
/// associated wiget (e.g., to start implicit animations). The framework /// associated widget (e.g., to start implicit animations). The framework
/// always calls [build] after calling [didUpdateWidget], which means any /// always calls [build] after calling [didUpdateWidget], which means any
/// calls to [setState] in [didUpdateWidget] are redundant. /// calls to [setState] in [didUpdateWidget] are redundant.
/// * If the subtree containing the [State] object is removed from the tree /// * If the subtree containing the [State] object is removed from the tree
...@@ -3796,7 +3796,7 @@ class StatefulElement extends ComponentElement { ...@@ -3796,7 +3796,7 @@ class StatefulElement extends ComponentElement {
} }
} }
/// An [Element] that uses a [ProxyElement] as its configuration. /// An [Element] that uses a [ProxyWidget] as its configuration.
abstract class ProxyElement extends ComponentElement { abstract class ProxyElement extends ComponentElement {
/// Initializes fields for subclasses. /// Initializes fields for subclasses.
ProxyElement(ProxyWidget widget) : super(widget); ProxyElement(ProxyWidget widget) : super(widget);
...@@ -3819,7 +3819,7 @@ abstract class ProxyElement extends ComponentElement { ...@@ -3819,7 +3819,7 @@ abstract class ProxyElement extends ComponentElement {
rebuild(); rebuild();
} }
/// Notify other objects that the wiget associated with this element has changed. /// Notify other objects that the widget associated with this element has changed.
/// ///
/// Called during [update] after changing the widget associated with this /// Called during [update] after changing the widget associated with this
/// element but before rebuilding this element. /// element but before rebuilding this element.
......
...@@ -557,7 +557,7 @@ abstract class ScrollPosition extends ViewportOffset with ScrollMetrics { ...@@ -557,7 +557,7 @@ abstract class ScrollPosition extends ViewportOffset with ScrollMetrics {
/// If the argument is null, this method has no effect. This is convenient for /// If the argument is null, this method has no effect. This is convenient for
/// cases where the new activity is obtained from another method, and that /// cases where the new activity is obtained from another method, and that
/// method might return null, since it means the caller does not have to /// method might return null, since it means the caller does not have to
/// explictly null-check the argument. /// explicitly null-check the argument.
void beginActivity(ScrollActivity newActivity) { void beginActivity(ScrollActivity newActivity) {
if (newActivity == null) if (newActivity == null)
return; return;
......
...@@ -335,7 +335,7 @@ class CustomScrollView extends ScrollView { ...@@ -335,7 +335,7 @@ class CustomScrollView extends ScrollView {
List<Widget> buildSlivers(BuildContext context) => slivers; List<Widget> buildSlivers(BuildContext context) => slivers;
} }
/// A [ScrollView] uses a single child layout model. /// A [ScrollView] that uses a single child layout model.
/// ///
/// See also: /// See also:
/// ///
...@@ -402,7 +402,7 @@ abstract class BoxScrollView extends ScrollView { ...@@ -402,7 +402,7 @@ abstract class BoxScrollView extends ScrollView {
/// ///
/// There are three options for constructing a [ListView]: /// There are three options for constructing a [ListView]:
/// ///
/// 1. The default constuctor takes an explict [List<Widget>] of children. This /// 1. The default constructor takes an explicit [List<Widget>] of children. This
/// constructor is appropriate for list views with a small number of /// constructor is appropriate for list views with a small number of
/// children because constructing the [List] requires doing work for every /// children because constructing the [List] requires doing work for every
/// child that could possibly be displayed in the list view instead of just /// child that could possibly be displayed in the list view instead of just
......
...@@ -25,7 +25,7 @@ export 'package:flutter/rendering.dart' show ...@@ -25,7 +25,7 @@ export 'package:flutter/rendering.dart' show
/// ///
/// It's uncommon to subclass [SliverChildDelegate]. Instead, consider using one /// It's uncommon to subclass [SliverChildDelegate]. Instead, consider using one
/// of the existing subclasses that provide adaptors to builder callbacks or /// of the existing subclasses that provide adaptors to builder callbacks or
/// explict child lists. /// explicit child lists.
/// ///
/// See also: /// See also:
/// ///
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment