mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 15:17:07 +00:00
Fix wording in spec
Change-Id: I468d0afa21102fc6fe6f30aa1c7bd0d1c46d8f94 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/105464 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
This commit is contained in:
parent
0a0927de9c
commit
c41e9ae0e8
4 changed files with 24 additions and 24 deletions
|
@ -8296,19 +8296,19 @@ class EditDartfixResult implements ResponseResult {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Messages that should be displayed to the user that describe details of the
|
* Messages that should be displayed to the user that describe details of the
|
||||||
* fix generation. This could be details that users might want to explore
|
* fix generation. For example, the messages might (a) point out details that
|
||||||
* before committing the changes to descriptions of exceptions that were
|
* users might want to explore before committing the changes or (b) describe
|
||||||
* thrown but that did not stop the fixes from being produced. The list will
|
* exceptions that were thrown but that did not stop the fixes from being
|
||||||
* be omitted if it is empty.
|
* produced. The list will be omitted if it is empty.
|
||||||
*/
|
*/
|
||||||
List<String> get details => _details;
|
List<String> get details => _details;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Messages that should be displayed to the user that describe details of the
|
* Messages that should be displayed to the user that describe details of the
|
||||||
* fix generation. This could be details that users might want to explore
|
* fix generation. For example, the messages might (a) point out details that
|
||||||
* before committing the changes to descriptions of exceptions that were
|
* users might want to explore before committing the changes or (b) describe
|
||||||
* thrown but that did not stop the fixes from being produced. The list will
|
* exceptions that were thrown but that did not stop the fixes from being
|
||||||
* be omitted if it is empty.
|
* produced. The list will be omitted if it is empty.
|
||||||
*/
|
*/
|
||||||
void set details(List<String> value) {
|
void set details(List<String> value) {
|
||||||
this._details = value;
|
this._details = value;
|
||||||
|
|
|
@ -1779,10 +1779,10 @@ abstract class IntegrationTestMixin {
|
||||||
* details: List<String> (optional)
|
* details: List<String> (optional)
|
||||||
*
|
*
|
||||||
* Messages that should be displayed to the user that describe details of
|
* Messages that should be displayed to the user that describe details of
|
||||||
* the fix generation. This could be details that users might want to
|
* the fix generation. For example, the messages might (a) point out
|
||||||
* explore before committing the changes to descriptions of exceptions that
|
* details that users might want to explore before committing the changes
|
||||||
* were thrown but that did not stop the fixes from being produced. The
|
* or (b) describe exceptions that were thrown but that did not stop the
|
||||||
* list will be omitted if it is empty.
|
* fixes from being produced. The list will be omitted if it is empty.
|
||||||
*/
|
*/
|
||||||
Future<EditDartfixResult> sendEditDartfix(List<String> included,
|
Future<EditDartfixResult> sendEditDartfix(List<String> included,
|
||||||
{List<String> includedFixes,
|
{List<String> includedFixes,
|
||||||
|
|
|
@ -2259,10 +2259,10 @@
|
||||||
</list>
|
</list>
|
||||||
<p>
|
<p>
|
||||||
Messages that should be displayed to the user that describe details of
|
Messages that should be displayed to the user that describe details of
|
||||||
the fix generation. This could be details that users might want to
|
the fix generation. For example, the messages might (a) point out
|
||||||
explore before committing the changes to descriptions of exceptions
|
details that users might want to explore before committing the changes
|
||||||
that were thrown but that did not stop the fixes from being produced.
|
or (b) describe exceptions that were thrown but that did not stop the
|
||||||
The list will be omitted if it is empty.
|
fixes from being produced. The list will be omitted if it is empty.
|
||||||
</p>
|
</p>
|
||||||
</field>
|
</field>
|
||||||
</result>
|
</result>
|
||||||
|
|
|
@ -8296,19 +8296,19 @@ class EditDartfixResult implements ResponseResult {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Messages that should be displayed to the user that describe details of the
|
* Messages that should be displayed to the user that describe details of the
|
||||||
* fix generation. This could be details that users might want to explore
|
* fix generation. For example, the messages might (a) point out details that
|
||||||
* before committing the changes to descriptions of exceptions that were
|
* users might want to explore before committing the changes or (b) describe
|
||||||
* thrown but that did not stop the fixes from being produced. The list will
|
* exceptions that were thrown but that did not stop the fixes from being
|
||||||
* be omitted if it is empty.
|
* produced. The list will be omitted if it is empty.
|
||||||
*/
|
*/
|
||||||
List<String> get details => _details;
|
List<String> get details => _details;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Messages that should be displayed to the user that describe details of the
|
* Messages that should be displayed to the user that describe details of the
|
||||||
* fix generation. This could be details that users might want to explore
|
* fix generation. For example, the messages might (a) point out details that
|
||||||
* before committing the changes to descriptions of exceptions that were
|
* users might want to explore before committing the changes or (b) describe
|
||||||
* thrown but that did not stop the fixes from being produced. The list will
|
* exceptions that were thrown but that did not stop the fixes from being
|
||||||
* be omitted if it is empty.
|
* produced. The list will be omitted if it is empty.
|
||||||
*/
|
*/
|
||||||
void set details(List<String> value) {
|
void set details(List<String> value) {
|
||||||
this._details = value;
|
this._details = value;
|
||||||
|
|
Loading…
Reference in a new issue