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

@ -27,22 +27,22 @@ extern crate url;
extern crate uuid;
pub mod about_loader;
pub mod file_loader;
pub mod http_loader;
pub mod data_loader;
pub mod cookie;
pub mod cookie_storage;
pub mod data_loader;
pub mod file_loader;
pub mod hsts;
pub mod http_loader;
pub mod image_cache_task;
pub mod mime_classifier;
pub mod pub_domains;
pub mod resource_task;
pub mod hsts;
pub mod storage_task;
pub mod mime_classifier;
/// An implementation of the [Fetch spec](https://fetch.spec.whatwg.org/)
pub mod fetch {
#![allow(dead_code, unused)] // XXXManishearth this is only temporary until the Fetch mod starts being used
pub mod cors_cache;
pub mod request;
pub mod response;
pub mod cors_cache;
}