Unverified Commit 91cfc1fe authored by James D. Lin's avatar James D. Lin Committed by GitHub

Fix a few typos in comments (#24249)

parent e71eb9a4
...@@ -845,7 +845,7 @@ class _IntrinsicDimensionsCacheEntry { ...@@ -845,7 +845,7 @@ class _IntrinsicDimensionsCacheEntry {
/// The declaration of the `RenderFoo` class itself would thus look like this: /// The declaration of the `RenderFoo` class itself would thus look like this:
/// ///
/// ```dart /// ```dart
/// class RenderFlex extends RenderBox with /// class RenderFoo extends RenderBox with
/// ContainerRenderObjectMixin<RenderBox, FooParentData>, /// ContainerRenderObjectMixin<RenderBox, FooParentData>,
/// RenderBoxContainerDefaultsMixin<RenderBox, FooParentData> { /// RenderBoxContainerDefaultsMixin<RenderBox, FooParentData> {
/// // ... /// // ...
......
...@@ -613,7 +613,7 @@ abstract class StatelessWidget extends Widget { ...@@ -613,7 +613,7 @@ abstract class StatelessWidget extends Widget {
/// description of the user interface is fully concrete (e.g., consists /// description of the user interface is fully concrete (e.g., consists
/// entirely of [RenderObjectWidget]s, which describe concrete [RenderObject]s). /// entirely of [RenderObjectWidget]s, which describe concrete [RenderObject]s).
/// ///
/// Stateful widget are useful when the part of the user interface you are /// Stateful widgets are useful when the part of the user interface you are
/// describing can change dynamically, e.g. due to having an internal /// describing can change dynamically, e.g. due to having an internal
/// clock-driven state, or depending on some system state. For compositions that /// clock-driven state, or depending on some system state. For compositions that
/// depend only on the configuration information in the object itself and the /// depend only on the configuration information in the object itself and the
......
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