Skip to content

Commit bdd111f

Browse files
authored
Put coments directly above enum definition (#4679)
This fixes a documentation generation bug that's causing FIRDocumentChange to appear to be undocumented.
1 parent 51e17ac commit bdd111f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Firestore/Source/Public/FIRDocumentChange.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ NS_ASSUME_NONNULL_BEGIN
2020

2121
@class FIRQueryDocumentSnapshot;
2222

23-
/** An enumeration of document change types. */
2423
#if defined(NS_CLOSED_ENUM)
24+
/** An enumeration of document change types. */
2525
typedef NS_CLOSED_ENUM(NSInteger, FIRDocumentChangeType)
2626
#else
27+
/** An enumeration of document change types. */
2728
typedef NS_ENUM(NSInteger, FIRDocumentChangeType)
2829
#endif
2930
{

0 commit comments

Comments
 (0)