aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Sebastian Schmidt <mrschmidt@google.com>2018-01-22 14:41:53 -0800
committerGravatar GitHub <noreply@github.com>2018-01-22 14:41:53 -0800
commit1db47188400382bc06397444eb18299a5c6f2b09 (patch)
treede3bf9b3a440f6481f245ea5bbc429a5bc98af56
parent5bfcb3b8cf109ae27f146a050db649f65bf06a59 (diff)
parentb5c44bc4393e2c09bd4ba6baa34891bb5ede320d (diff)
Merge pull request #691 from firebase/schmidt-sebastian-patch-5
Fixing spelling in FIRStorageErrors
-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:]";