diff options
author | Josh Matthews <josh@joshmatthews.net> | 2015-08-13 19:06:47 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-08-16 10:30:43 -0400 |
commit | 8bb853f64354b2cc1b9f9e0ea416efdd79096418 (patch) | |
tree | 3d369b7310e24d25d49939de67fd9a7371675e56 /components/script/dom/filereader.rs | |
parent | 7f935f010b356df23c2cf5737021880b30e6c76d (diff) | |
download | servo-8bb853f64354b2cc1b9f9e0ea416efdd79096418.tar.gz servo-8bb853f64354b2cc1b9f9e0ea416efdd79096418.zip |
Fix existing syntactics nits.
Diffstat (limited to 'components/script/dom/filereader.rs')
-rw-r--r-- | components/script/dom/filereader.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/filereader.rs b/components/script/dom/filereader.rs index 4b8721a21e6..f819a2b395c 100644 --- a/components/script/dom/filereader.rs +++ b/components/script/dom/filereader.rs @@ -267,7 +267,7 @@ impl<'a> FileReaderMethods for &'a FileReader { } // https://w3c.github.io/FileAPI/#dfn-readAsText - fn ReadAsText(self, blob: &Blob, label:Option<DOMString>) -> ErrorResult { + fn ReadAsText(self, blob: &Blob, label: Option<DOMString>) -> ErrorResult { self.read(FileReaderFunction::ReadAsText, blob, label) } |