aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/file.rs
diff options
context:
space:
mode:
authorArthur Marble <arthur@info9.net>2016-09-17 18:28:28 -0500
committerArthur Marble <arthur@info9.net>2016-09-17 20:31:46 -0500
commite7ffbf819af2162336c0b1f6f8f467bfc19e4590 (patch)
treef75d93c81706b4fbad17b9401d297c565970c5b6 /components/script/dom/file.rs
parent5ce3510a50cd908708efdce9e18749f1596d197f (diff)
downloadservo-e7ffbf819af2162336c0b1f6f8f467bfc19e4590.tar.gz
servo-e7ffbf819af2162336c0b1f6f8f467bfc19e4590.zip
Replace typeString with type_string.
Diffstat (limited to 'components/script/dom/file.rs')
-rw-r--r--components/script/dom/file.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/file.rs b/components/script/dom/file.rs
index f9b181dbf1a..8b4abaaed80 100644
--- a/components/script/dom/file.rs
+++ b/components/script/dom/file.rs
@@ -25,9 +25,9 @@ pub struct File {
impl File {
#[allow(unrooted_must_root)]
fn new_inherited(blob_impl: BlobImpl, name: DOMString,
- modified: Option<i64>, typeString: &str) -> File {
+ modified: Option<i64>, type_string: &str) -> File {
File {
- blob: Blob::new_inherited(blob_impl, typeString.to_owned()),
+ blob: Blob::new_inherited(blob_impl, type_string.to_owned()),
name: name,
// https://w3c.github.io/FileAPI/#dfn-lastModified
modified: match modified {