aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firebase/Storage
diff options
context:
space:
mode:
authorGravatar Sebastian Schmidt <mrschmidt@google.com>2018-01-22 13:15:24 -0800
committerGravatar GitHub <noreply@github.com>2018-01-22 13:15:24 -0800
commitb5c44bc4393e2c09bd4ba6baa34891bb5ede320d (patch)
treede3bf9b3a440f6481f245ea5bbc429a5bc98af56 /Firebase/Storage
parent5bfcb3b8cf109ae27f146a050db649f65bf06a59 (diff)
Fixing spelling error in FIRStorageErrors
Diffstat (limited to 'Firebase/Storage')
-rw-r--r--Firebase/Storage/FIRStorageErrors.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firebase/Storage/FIRStorageErrors.m b/Firebase/Storage/FIRStorageErrors.m
index dd5c903..ecfae02 100644
--- a/Firebase/Storage/FIRStorageErrors.m
+++ b/Firebase/Storage/FIRStorageErrors.m
@@ -63,7 +63,7 @@
NSString *totalString = total ? @(total).stringValue : @"unknown";
NSString *sizeString = total ? @(size).stringValue : @"unknown";
NSString *const kSizeExceededErrorFormat =
- @"Attempeted to download object with size of %@ bytes, "
+ @"Attempted to download object with size of %@ bytes, "
@"which exceeds the maximum size of %@ bytes. "
@"Consider raising the maximum download size, or using "
@"[FIRStorageReference writeToFile:]";