Add missing word in dartdoc for StatelessWidget (#12879)

This commit is contained in:
Mikkel Nygaard Ravn 2017-11-06 17:16:18 +01:00 committed by GitHub
parent e064d6cbc9
commit 354ab0ce7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -626,9 +626,9 @@ abstract class StatelessWidget extends Widget {
/// The given [BuildContext] contains information about the location in the /// The given [BuildContext] contains information about the location in the
/// tree at which this widget is being built. For example, the context /// tree at which this widget is being built. For example, the context
/// provides the set of inherited widgets for this location in the tree. A /// provides the set of inherited widgets for this location in the tree. A
/// given widget might be with multiple different [BuildContext] arguments /// given widget might be built with multiple different [BuildContext]
/// over time if the widget is moved around the tree or if the widget is /// arguments over time if the widget is moved around the tree or if the
/// inserted into the tree in multiple places at once. /// widget is inserted into the tree in multiple places at once.
/// ///
/// The implementation of this method must only depend on: /// The implementation of this method must only depend on:
/// ///