Skip to content

Commit d2ecd64

Browse files
committed
Fix dart format
1 parent 23d444d commit d2ecd64

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

sdk/lib/_internal/vm_shared/lib/bool_patch.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import "dart:_internal"
6-
show patch,
7-
checkNotNullable;
5+
import "dart:_internal" show patch, checkNotNullable;
86

97
@patch
108
@pragma("vm:entry-point")

sdk/lib/core/bool.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,10 @@ class bool {
9898
///
9999
/// If [caseSensitive] is `true`, which is the default,
100100
/// the only accepted inputs are the strings `"true"` and `"false"`.
101-
/// If [caseSensitive] is `false`, any combination of upper and lower case ASCII letters
102-
/// in the words `"true"` and `"false"` are accepted, as if the input was first lower-cased.
101+
///
102+
/// If [caseSensitive] is `false`, any combination of upper and lower case
103+
/// ASCII letters in the words `"true"` and `"false"` are accepted, as if the
104+
/// input was first lower-cased.
103105
///
104106
/// If the [source] string does not contain a valid boolean literal
105107
/// a [FormatException] is thrown.

0 commit comments

Comments
 (0)