aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/filereader.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/filereader.rs')
-rw-r--r--components/script/dom/filereader.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/script/dom/filereader.rs b/components/script/dom/filereader.rs
index bc5024cb1fa..b89440ab600 100644
--- a/components/script/dom/filereader.rs
+++ b/components/script/dom/filereader.rs
@@ -157,7 +157,10 @@ impl FileReader {
}
#[allow(non_snake_case)]
- pub fn Constructor(global: &GlobalScope, proto: Option<HandleObject>) -> Fallible<DomRoot<FileReader>> {
+ pub fn Constructor(
+ global: &GlobalScope,
+ proto: Option<HandleObject>,
+ ) -> Fallible<DomRoot<FileReader>> {
Ok(FileReader::new(global, proto))
}