Skip to content

Commit 47e6ace

Browse files
author
InAnYan
committed
Preliminary
1 parent d3bf267 commit 47e6ace

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

module/core/format_tools/src/format/as_table.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ mod private
3232
)
3333
where
3434
RowKey : table::RowKey,
35-
Row : Cells< CellKey>,
35+
Row : Cells< CellKey >,
3636
CellKey : table::CellKey + ?Sized,
3737
// CellRepr : table::CellRepr
3838
;
@@ -41,7 +41,7 @@ mod private
4141
AsTable< 'table, Table, RowKey, Row, CellKey>
4242
where
4343
RowKey : table::RowKey,
44-
Row : Cells< CellKey>,
44+
Row : Cells< CellKey >,
4545
CellKey : table::CellKey + ?Sized,
4646
// CellRepr : table::CellRepr,
4747
{
@@ -56,7 +56,7 @@ mod private
5656
for AsTable< 'table, Table, RowKey, Row, CellKey>
5757
where
5858
RowKey : table::RowKey,
59-
Row : Cells< CellKey>,
59+
Row : Cells< CellKey >,
6060
CellKey : table::CellKey + ?Sized,
6161
// CellRepr : table::CellRepr,
6262
{
@@ -70,7 +70,7 @@ mod private
7070
for AsTable< 'table, Table, RowKey, Row, CellKey>
7171
where
7272
RowKey : table::RowKey,
73-
Row : Cells< CellKey>,
73+
Row : Cells< CellKey >,
7474
CellKey : table::CellKey + ?Sized,
7575
// CellRepr : table::CellRepr,
7676
{
@@ -86,7 +86,7 @@ mod private
8686
for AsTable< 'table, Table, RowKey, Row, CellKey>
8787
where
8888
RowKey : table::RowKey,
89-
Row : Cells< CellKey>,
89+
Row : Cells< CellKey >,
9090
CellKey : table::CellKey + ?Sized,
9191
// CellRepr : table::CellRepr,
9292
{
@@ -101,7 +101,7 @@ mod private
101101
where
102102
Table : fmt::Debug,
103103
RowKey : table::RowKey,
104-
Row : Cells< CellKey>,
104+
Row : Cells< CellKey >,
105105
CellKey : table::CellKey + ?Sized,
106106
// CellRepr : table::CellRepr,
107107
{
@@ -146,7 +146,7 @@ mod private
146146
for AsTable< 'table, Table, RowKey, Row, CellKey>
147147
where
148148
RowKey : table::RowKey,
149-
Row : Cells< CellKey>,
149+
Row : Cells< CellKey >,
150150
CellKey : table::CellKey + ?Sized,
151151
// CellRepr : table::CellRepr,
152152
Self : Copy,

module/core/format_tools/tests/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Primary tests.
22
3-
#![ feature( trace_macros ) ]
3+
// #![ feature( trace_macros ) ]
44
#![ allow( unused_imports ) ]
55

66
use format_tools as the_module;

0 commit comments

Comments
 (0)