Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
8b197bdd
Commit
8b197bdd
authored
Oct 25, 2016
by
Chris Bracken
Committed by
GitHub
Oct 25, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix common typos in doc comments (#6520)
parent
310b8053
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
10 additions
and
10 deletions
+10
-10
text_editing.dart
packages/flutter/lib/src/painting/text_editing.dart
+1
-1
text_span.dart
packages/flutter/lib/src/painting/text_span.dart
+2
-2
box.dart
packages/flutter/lib/src/rendering/box.dart
+1
-1
flex.dart
packages/flutter/lib/src/rendering/flex.dart
+2
-2
basic.dart
packages/flutter/lib/src/widgets/basic.dart
+1
-1
framework.dart
packages/flutter/lib/src/widgets/framework.dart
+1
-1
driver.dart
packages/flutter_driver/lib/src/driver.dart
+1
-1
markdown_style_raw.dart
packages/flutter_markdown/lib/src/markdown_style_raw.dart
+1
-1
No files found.
packages/flutter/lib/src/painting/text_editing.dart
View file @
8b197bdd
...
...
@@ -41,7 +41,7 @@ class TextRange {
/// Whether this range is empty (but still potentially placed inside the text).
bool
get
isCollapsed
=>
start
==
end
;
/// Whether the start of this range prece
ed
s the end.
/// Whether the start of this range prece
de
s the end.
bool
get
isNormalized
=>
end
>=
start
;
/// The text before this range.
...
...
packages/flutter/lib/src/painting/text_span.dart
View file @
8b197bdd
...
...
@@ -62,13 +62,13 @@ class TextSpan {
/// The text contained in the span.
///
/// If both [text] and [children] are non-null, the text will prece
ed
the
/// If both [text] and [children] are non-null, the text will prece
de
the
/// children.
final
String
text
;
/// Additional spans to include as children.
///
/// If both [text] and [children] are non-null, the text will prece
ed
the
/// If both [text] and [children] are non-null, the text will prece
de
the
/// children.
///
/// Modifying the list after the [TextSpan] has been created is not
...
...
packages/flutter/lib/src/rendering/box.dart
View file @
8b197bdd
...
...
@@ -90,7 +90,7 @@ class BoxConstraints extends Constraints {
minHeight
=
0.0
,
maxHeight
=
size
.
height
;
/// Creates box constraints that expand to fill another box contraints.
/// Creates box constraints that expand to fill another box con
s
traints.
///
/// If width or height is given, the constraints will require exactly the
/// given value in the given dimension.
...
...
packages/flutter/lib/src/rendering/flex.dart
View file @
8b197bdd
...
...
@@ -45,7 +45,7 @@ class FlexParentData extends ContainerBoxParentDataMixin<RenderBox> {
/// During a flex layout, available space along the main axis is allocated to
/// children. After allocating space, there might be some remaining free space.
/// This value controls whether to maximize or minimize the amount of free
/// space, subject to the incoming layout contraints.
/// space, subject to the incoming layout con
s
traints.
///
/// See [Row], [Column], [MainAxisAlignment], [Flexible].
enum
MainAxisSize
{
...
...
@@ -169,7 +169,7 @@ class RenderFlex extends RenderBox with ContainerRenderObjectMixin<RenderBox, Fl
///
/// After allocating space to children, there might be some remaining free
/// space. This value controls whether to maximize or minimize the amount of
/// free space, subject to the incoming layout contraints.
/// free space, subject to the incoming layout con
s
traints.
///
/// If some children have a non-zero flex factors (and none have a fit of
/// [FlexFit.loose]), they will expand to consume all the available space and
...
...
packages/flutter/lib/src/widgets/basic.dart
View file @
8b197bdd
...
...
@@ -1911,7 +1911,7 @@ class Flex extends MultiChildRenderObjectWidget {
///
/// After allocating space to children, there might be some remaining free
/// space. This value controls whether to maximize or minimize the amount of
/// free space, subject to the incoming layout contraints.
/// free space, subject to the incoming layout con
s
traints.
///
/// If some children have a non-zero flex factors (and none have a fit of
/// [FlexFit.loose]), they will expand to consume all the available space and
...
...
packages/flutter/lib/src/widgets/framework.dart
View file @
8b197bdd
...
...
@@ -1996,7 +1996,7 @@ abstract class Element implements BuildContext {
/// The framework calls this function when a newly created element is added to
/// the tree for the first time. Use this method to initialize state that
/// depends on having a parent. State that is independent of the parent can
/// more easily be initialized in the contructor.
/// more easily be initialized in the con
s
tructor.
///
/// This method transitions the element from the "initial" lifecycle state to
/// the "active" lifecycle state.
...
...
packages/flutter_driver/lib/src/driver.dart
View file @
8b197bdd
...
...
@@ -253,7 +253,7 @@ class FlutterDriver {
///
/// [dx] and [dy] specify the total offset for the entire scrolling action.
///
/// [duration] specifies the leng
ht
of the action.
/// [duration] specifies the leng
th
of the action.
///
/// The move events are generated at a given [frequency] in Hz (or events per
/// second). It defaults to 60Hz.
...
...
packages/flutter_markdown/lib/src/markdown_style_raw.dart
View file @
8b197bdd
...
...
@@ -34,7 +34,7 @@ class MarkdownStyleRaw {
}
/// Creates a new [MarkdownStyleRaw] based on the current style, with the
/// provided param
a
ters overridden.
/// provided param
e
ters overridden.
MarkdownStyleRaw
copyWith
({
TextStyle
a
,
TextStyle
p
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment