diff options
Diffstat (limited to 'components/script/dom/filereader.rs')
-rw-r--r-- | components/script/dom/filereader.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/filereader.rs b/components/script/dom/filereader.rs index 37add7d61f4..2fe0ab948b2 100644 --- a/components/script/dom/filereader.rs +++ b/components/script/dom/filereader.rs @@ -62,9 +62,9 @@ impl ReadMetaData { function: FileReaderFunction, ) -> ReadMetaData { ReadMetaData { - blobtype: blobtype, - label: label, - function: function, + blobtype, + label, + function, } } } |