@@ -81,7 +81,7 @@ NS_SWIFT_NAME(MemoryEagerGCSetting)
81
81
@interface FIRMemoryEagerGCSettings : NSObject <NSCopying, FIRMemoryGarbageCollectorSettings>
82
82
83
83
/* *
84
- * Creates an instnace of `MemoryEagerGCSettings`.
84
+ * Creates an instance of `MemoryEagerGCSettings`.
85
85
*/
86
86
- (instancetype )init;
87
87
@@ -90,9 +90,9 @@ NS_SWIFT_NAME(MemoryEagerGCSetting)
90
90
/* *
91
91
* Configures the SDK to use a least-recently-used garbage collector for memory cache.
92
92
*
93
- * Once configured, the SDK will attemp to remove documents that are least recently used in batches,
94
- * if the current cache size is larger than the given target cache size. Default cache size is
95
- * 100MB.
93
+ * Once configured, the SDK will attempt to remove documents that are least recently used in
94
+ * batches, if the current cache size is larger than the given target cache size. Default cache size
95
+ * is 100MB.
96
96
*
97
97
* To use, create an instance using one of the initializers, then initialize
98
98
* `MemoryCacheSettings` with this instance.
@@ -101,13 +101,13 @@ NS_SWIFT_NAME(MemoryLRUGCSettings)
101
101
@interface FIRMemoryLRUGCSettings : NSObject <NSCopying, FIRMemoryGarbageCollectorSettings>
102
102
103
103
/* *
104
- * Creates an instnace of `FIRMemoryLRUGCSettings`, with default target cache size 100MB. The SDK
104
+ * Creates an instance of `FIRMemoryLRUGCSettings`, with default target cache size 100MB. The SDK
105
105
* will run garbage collection if the current cache size is larger than 100MB.
106
106
*/
107
107
- (instancetype )init;
108
108
109
109
/* *
110
- * Creates an instnace of `FIRMemoryLRUGCSettings`, with a custom target cache size. The SDK will
110
+ * Creates an instance of `FIRMemoryLRUGCSettings`, with a custom target cache size. The SDK will
111
111
* run garbage collection if the current cache size is larger than the given size.
112
112
*/
113
113
- (instancetype )initWithSizeBytes:(NSNumber *)size;
@@ -126,12 +126,12 @@ NS_SWIFT_NAME(MemoryCacheSettings)
126
126
@interface FIRMemoryCacheSettings : NSObject <NSCopying, FIRLocalCacheSettings>
127
127
128
128
/* *
129
- * Creates an instnace of `MemoryCacheSettings`.
129
+ * Creates an instance of `MemoryCacheSettings`.
130
130
*/
131
131
- (instancetype )init;
132
132
133
133
/* *
134
- * Creates an instnace of `MemoryCacheSettings` with given `MemoryGarbageCollectorSettings` to
134
+ * Creates an instance of `MemoryCacheSettings` with given `MemoryGarbageCollectorSettings` to
135
135
* custom the gabarge collector.
136
136
*/
137
137
- (instancetype )initWithGarbageCollectorSettings:
0 commit comments