Skip to content

Commit 1a23f62

Browse files
committed
Address feedback.
1 parent 2137e5f commit 1a23f62

File tree

9 files changed

+6
-2
lines changed

9 files changed

+6
-2
lines changed
File renamed without changes.
File renamed without changes.

Firestore/Source/Public/FirebaseFirestore/FIRMaxKey.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@ NS_SWIFT_NAME(MaxKey)
2626
__attribute__((objc_subclassing_restricted))
2727
@interface FIRMaxKey : NSObject
2828

29-
/** Returns the only instance of MaxKey. */
29+
/** The shared singleton `MaxKey` instance. */
3030
@property(class, readonly) FIRMaxKey *shared;
3131

3232
/** Returns true if the given object is equal to this, and false otherwise. */
3333
- (BOOL)isEqual:(nullable id)object;
3434

35+
- (instancetype)init NS_UNAVAILABLE;
36+
3537
@end
3638

3739
NS_ASSUME_NONNULL_END

Firestore/Source/Public/FirebaseFirestore/FIRMinKey.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,14 @@ NS_SWIFT_NAME(MinKey)
2626
__attribute__((objc_subclassing_restricted))
2727
@interface FIRMinKey : NSObject
2828

29-
/** The only instance of MinKey. */
29+
/** The shared singleton `MinKey` instance. */
3030
@property(class, readonly) FIRMinKey *shared;
3131

3232
/** Returns true if the given object is equal to this, and false otherwise. */
3333
- (BOOL)isEqual:(nullable id)object;
3434

35+
- (instancetype)init NS_UNAVAILABLE;
36+
3537
@end
3638

3739
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)