Skip to content

Commit

Permalink
Fix whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
1024jp committed Nov 11, 2017
1 parent 052ac70 commit d5c729c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Gzip/Data+Gzip.swift
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ extension Data {
return Data()
}

let contiguousData = self.withUnsafeBytes {Data(bytes: $0, count: self.count)}
let contiguousData = self.withUnsafeBytes { Data(bytes: $0, count: self.count) }
var stream = contiguousData.createZStream()
var status: Int32

Expand Down Expand Up @@ -232,7 +232,7 @@ extension Data {
return Data()
}

let contiguousData = self.withUnsafeBytes {Data(bytes: $0, count: self.count)}
let contiguousData = self.withUnsafeBytes { Data(bytes: $0, count: self.count) }
var stream = contiguousData.createZStream()
var status: Int32

Expand Down

0 comments on commit d5c729c

Please sign in to comment.