Skip to content

Commit 5b1de45

Browse files
committed
remove the line termination change
1 parent e43030d commit 5b1de45

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/new_boilerplate_migration.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ class _$FooProps extends BarProps {
5151
}
5252
5353
// Generated in .over_react.g.dart
54-
class FooProps extends _$FooProps with _$FooPropsAccessorsMixin {
54+
class FooProps extends _$FooProps with _$FooPropsAccessorsMixin {
5555
static const PropsMeta meta = ...;
56-
...
56+
...
5757
}
5858
```
5959

@@ -81,9 +81,9 @@ class FooProps
8181
with
8282
// ignore: mixin_of_non_class, undefined_class
8383
_$FooPropsAccessorsMixin {
84-
// ignore: const_initialized_with_non_constant_value, undefined_class, undefined_identifier
84+
// ignore: const_initialized_with_non_constant_value, undefined_class, undefined_identifier
8585
static const PropsMeta meta = _$metaForPanelTitleProps;
86-
}
86+
}
8787
```
8888

8989
This is overly verbose, confusing, and error-prone. Authoring components should be
@@ -907,7 +907,7 @@ UiFactory<UiProps> Foo = uiFunction(
907907
);
908908
```
909909

910-
#### With propTypes (~Coming soon!~ lol no its not)
910+
#### With propTypes (Coming soon!)
911911

912912
```dart
913913
UiFactory<FooProps> Foo = uiFunction(

0 commit comments

Comments
 (0)