File tree Expand file tree Collapse file tree 5 files changed +26
-25
lines changed Expand file tree Collapse file tree 5 files changed +26
-25
lines changed Original file line number Diff line number Diff line change @@ -28,24 +28,24 @@ fn main() {
28
28
} ) ;
29
29
30
30
some_fuuuuuuuuunction ( ) . method_call_a ( aaaaa, bbbbb, |c| {
31
- let x = c;
32
- x
33
- } )
31
+ let x = c;
32
+ x
33
+ } )
34
34
. method_call_b ( aaaaa, bbbbb, |c| {
35
- let x = c;
36
- x
37
- } ) ;
35
+ let x = c;
36
+ x
37
+ } ) ;
38
38
39
39
fffffffffffffffffffffffffffffffffff ( a, {
40
40
SCRIPT_TASK_ROOT . with ( |root| {
41
41
* root. borrow_mut ( ) = Some ( & script_task) ;
42
42
} ) ;
43
43
} ) ;
44
44
45
- let suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuum = xxxxxxx . map ( |x| x + 5 )
46
- . map ( |x| x / 2 )
47
- . fold ( 0 ,
48
- |acc, x| acc + x) ;
45
+ let suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuum =
46
+ xxxxxxx . map ( |x| x + 5 )
47
+ . map ( |x| x / 2 )
48
+ . fold ( 0 , |acc, x| acc + x) ;
49
49
50
50
aaaaaaaaaaaaaaaa. map ( |x| {
51
51
x += 1 ;
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ fn main() {
13
13
"elit" ,
14
14
) ;
15
15
// #1501
16
- let hyper = Arc :: new ( Client :: with_connector (
17
- HttpsConnector :: new ( TlsClient :: new ( ) ) ,
18
- ) ) ;
16
+ let hyper = Arc :: new ( Client :: with_connector ( HttpsConnector :: new (
17
+ TlsClient :: new ( ) ,
18
+ ) ) ) ;
19
19
20
20
// chain
21
21
let x = yooooooooooooo
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ mod client {
10
10
} ;
11
11
12
12
let next_state = match self . state {
13
- State :: V5 (
14
- v5 :: State :: Command ( v5 :: comand :: State :: WriteVersion ( ref mut response) ) ,
15
- ) => {
13
+ State :: V5 ( v5 :: State :: Command ( v5 :: comand :: State :: WriteVersion (
14
+ ref mut response,
15
+ ) ) ) => {
16
16
// The pattern cannot be formatted in a way that the match stays
17
17
// within the column limit. The rewrite should therefore be
18
18
// skipped.
Original file line number Diff line number Diff line change @@ -255,12 +255,12 @@ fn issue507() {
255
255
256
256
fn issue508 ( ) {
257
257
match s. type_id ( ) {
258
- Some (
259
- NodeTypeId :: Element ( ElementTypeId :: HTMLElement ( HTMLElementTypeId :: HTMLCanvasElement ) ) ,
260
- ) => true ,
261
- Some (
262
- NodeTypeId :: Element ( ElementTypeId :: HTMLElement ( HTMLElementTypeId :: HTMLObjectElement ) ) ,
263
- ) => s. has_object_data ( ) ,
258
+ Some ( NodeTypeId :: Element ( ElementTypeId :: HTMLElement (
259
+ HTMLElementTypeId :: HTMLCanvasElement ,
260
+ ) ) ) => true ,
261
+ Some ( NodeTypeId :: Element ( ElementTypeId :: HTMLElement (
262
+ HTMLElementTypeId :: HTMLObjectElement ,
263
+ ) ) ) => s. has_object_data ( ) ,
264
264
Some ( NodeTypeId :: Element ( _) ) => false ,
265
265
}
266
266
}
Original file line number Diff line number Diff line change @@ -47,9 +47,10 @@ fn main() {
47
47
impl < ' a , ' b > ResolveGeneratedContentFragmentMutator < ' a , ' b > {
48
48
fn mutate_fragment ( & mut self , fragment : & mut Fragment ) {
49
49
match * * info {
50
- GeneratedContentInfo :: ContentItem (
51
- ContentItem :: Counter ( ref counter_name, counter_style) ,
52
- ) => { }
50
+ GeneratedContentInfo :: ContentItem ( ContentItem :: Counter (
51
+ ref counter_name,
52
+ counter_style,
53
+ ) ) => { }
53
54
}
54
55
}
55
56
}
You can’t perform that action at this time.
0 commit comments