diff options
author | Brandon Fairchild <csbit32@gmail.com> | 2015-09-01 16:30:42 -0400 |
---|---|---|
committer | Brandon Fairchild <csbit32@gmail.com> | 2015-09-01 16:30:42 -0400 |
commit | d61a6e2161bbce5182a5e1b9c504c55d5b2aa2f4 (patch) | |
tree | 9153de85fe418319e039bb3ad66ae1037233a72e /components/script/document_loader.rs | |
parent | 24bc6dfb52d1864754230088e70f7aeeb03403dd (diff) | |
download | servo-d61a6e2161bbce5182a5e1b9c504c55d5b2aa2f4.tar.gz servo-d61a6e2161bbce5182a5e1b9c504c55d5b2aa2f4.zip |
Fix reported test-tidy errors
This fixes lines that were reported to have missing
space after a comma.
Diffstat (limited to 'components/script/document_loader.rs')
-rw-r--r-- | components/script/document_loader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/document_loader.rs b/components/script/document_loader.rs index 6ea7767bfab..fa0c070ceaf 100644 --- a/components/script/document_loader.rs +++ b/components/script/document_loader.rs @@ -60,7 +60,7 @@ impl DocumentLoader { /// are lots of iframes. pub fn new_with_task(resource_task: Arc<ResourceTask>, data: Option<NotifierData>, - initial_load: Option<Url>,) + initial_load: Option<Url>) -> DocumentLoader { let initial_loads = initial_load.into_iter().map(LoadType::PageSource).collect(); |