From fc34b9a14dfb357f15116a5e53a73146be14845a Mon Sep 17 00:00:00 2001 From: coalman Date: Tue, 18 Apr 2017 02:21:10 -0400 Subject: Fix indentation errors in servo rust code that tidy now finds. --- components/script/dom/blob.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'components/script/dom/blob.rs') diff --git a/components/script/dom/blob.rs b/components/script/dom/blob.rs index cb61ced9e3a..c076282dcc1 100644 --- a/components/script/dom/blob.rs +++ b/components/script/dom/blob.rs @@ -353,12 +353,12 @@ pub fn blob_parts_to_bytes(blobparts: Vec) -> Result, ()> impl BlobMethods for Blob { // https://w3c.github.io/FileAPI/#dfn-size fn Size(&self) -> u64 { - match *self.blob_impl.borrow() { - BlobImpl::File(ref f) => f.size, - BlobImpl::Memory(ref v) => v.len() as u64, - BlobImpl::Sliced(ref parent, ref rel_pos) => - rel_pos.to_abs_range(parent.Size() as usize).len() as u64, - } + match *self.blob_impl.borrow() { + BlobImpl::File(ref f) => f.size, + BlobImpl::Memory(ref v) => v.len() as u64, + BlobImpl::Sliced(ref parent, ref rel_pos) => + rel_pos.to_abs_range(parent.Size() as usize).len() as u64, + } } // https://w3c.github.io/FileAPI/#dfn-type -- cgit v1.2.3