-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Adjust phrasing of features #36874
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adjust phrasing of features #36874
Conversation
christopherfujino
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
|
|
||
| test('flutter web help string', () { | ||
| expect(flutterWebFeature.generateHelpMessage(), 'Enable or disable Flutter Web on master, dev channels.'); | ||
| expect(flutterWebFeature.generateHelpMessage(), 'Enable or disable Flutter for Web. This setting will take effect on master, dev channels.'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Flutter for Web" or "Flutter for web"?
And, perhaps `"This setting will take effect on the master and dev channels.".
devoncarew
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm w/ some potential additional word-smithing
| /// The [Feature] for flutter web. | ||
| const Feature flutterWebFeature = Feature( | ||
| name: 'Flutter Web', | ||
| name: 'Flutter for Web', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also here, "Flutter for Web" ==> "Flutter for web"
|
Updated usage: |
| /// The [Feature] for macOS desktop. | ||
| const Feature flutterMacOSDesktopFeature = Feature( | ||
| name: 'Flutter Desktop for macOS', | ||
| name: 'Flutter for macOS desktop', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Flutter for macOS desktop" ==> "Flutter for desktop on macOS"? "Flutter for desktop (macOS)"?
The changes above would let the name read Flutter for desktop (which would parallel the Flutter for web name).
lgtm either way
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
Codecov Report
@@ Coverage Diff @@
## master #36874 +/- ##
==========================================
+ Coverage 55.31% 55.51% +0.19%
==========================================
Files 190 190
Lines 17603 17594 -9
==========================================
+ Hits 9737 9767 +30
+ Misses 7866 7827 -39
Continue to review full report at Codecov.
|
* adjust phrasing of features * word smithing * more wordsmithing
Description
Separate feature description and where it is enabled into two sentences, following suggestion by @devoncarew . Adjust names of features to better match brand guidelines.