Issue #7390 correct the order of mod declaration

This commit is contained in:
Hugo Thiessard 2015-09-18 22:02:04 +02:00
parent e81e91207c
commit 6565e7b02f
11 changed files with 53 additions and 55 deletions

View file

@ -79,9 +79,9 @@ pub mod flow_list;
pub mod flow_ref;
pub mod fragment;
pub mod generated_content;
pub mod layout_task;
pub mod incremental;
pub mod inline;
pub mod layout_task;
pub mod list_item;
pub mod model;
pub mod multicol;
@ -89,13 +89,13 @@ pub mod opaque_node;
pub mod parallel;
pub mod query;
pub mod sequential;
pub mod table_wrapper;
pub mod table;
pub mod table_caption;
pub mod table_colgroup;
pub mod table_rowgroup;
pub mod table_row;
pub mod table_cell;
pub mod table_colgroup;
pub mod table_row;
pub mod table_rowgroup;
pub mod table_wrapper;
pub mod text;
pub mod traversal;
pub mod wrapper;