Skip to content

Commit

Permalink
#2119. Minor wording changes (#2120)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov committed Jul 7, 2023
1 parent 48d7f55 commit 3ee213d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
/// superq(a1, ... , ak, ak+1, ..., ap);. Test that it is a compile-time
/// error if required named parameter is not specified
/// @author sgrekhov22@gmail.com
/// @issue 52872
class A {
bool v1;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

/// @assertionconst JsonEncoder.withIndent(
/// String indent, [
/// dynamic toEncodable(
/// nonSerializable
/// )
/// ])
/// @assertion const JsonEncoder.withIndent(
/// String indent, [dynamic toEncodable(nonSerializable)])
/// Creates a JSON encoder that creates multi-line JSON.
/// The encoding of elements of lists and maps are indented and put on separate
/// lines. The indent string is prepended to these elements, once for each level
Expand All @@ -22,6 +18,7 @@
/// of one of the convertible types.
///
/// If toEncodable is omitted, it defaults to calling .toJson() on the object.
///
/// @description Checks that this constructor, called with null indent parameter,
/// and no toEncodable creates object with default toEncodable
/// @author sgrekhov@unipro.ru
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

/// @assertionconst JsonEncoder.withIndent(
/// String indent, [
/// dynamic toEncodable(
/// nonSerializable
/// )
/// ])
/// @assertion const JsonEncoder.withIndent(
/// String indent, [dynamic toEncodable(nonSerializable)])
/// Creates a JSON encoder that creates multi-line JSON.
/// The encoding of elements of lists and maps are indented and put on separate
/// lines. The indent string is prepended to these elements, once for each level
Expand All @@ -22,6 +18,7 @@
/// of one of the convertible types.
///
/// If toEncodable is omitted, it defaults to calling .toJson() on the object.
///
/// @description Checks that this constructor, called with not null indent
/// parameter, and no toEncodable creates a JSON encoder that creates multi-line
/// JSON.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

/// @assertionconst JsonEncoder.withIndent(
/// String indent, [
/// dynamic toEncodable(
/// nonSerializable
/// )
/// ])
/// @assertion const JsonEncoder.withIndent(
/// String indent, [dynamic toEncodable(nonSerializable)])
/// Creates a JSON encoder that creates multi-line JSON.
/// The encoding of elements of lists and maps are indented and put on separate
/// lines. The indent string is prepended to these elements, once for each level
Expand All @@ -22,6 +18,7 @@
/// of one of the convertible types.
///
/// If toEncodable is omitted, it defaults to calling .toJson() on the object.
///
/// @description Checks that this constructor, called with not null indent
/// parameter and toEncodable creates a JSON encoder that creates multi-line
/// JSON.
Expand Down

0 comments on commit 3ee213d

Please sign in to comment.