Skip to content

Commit 5fab234

Browse files
committed
formatting
1 parent 904af3d commit 5fab234

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/AWSLambdaEvents/Utils/DateWrappers.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,8 @@ struct RFC5322DateStrategy {
195195
guard let first = first,
196196
let second = second,
197197
let third = third,
198-
let fourth = fourth else { return nil }
198+
let fourth = fourth
199+
else { return nil }
199200
return Int(first - UInt8(ascii: "0")) * 1000
200201
+ Int(second - UInt8(ascii: "0")) * 100
201202
+ Int(third - UInt8(ascii: "0")) * 10

0 commit comments

Comments
 (0)