Skip to content

Commit fae6fbf

Browse files
committed
fix bad links in doc comments
1 parent f708c42 commit fae6fbf

File tree

2 files changed

+17
-34
lines changed

2 files changed

+17
-34
lines changed

FirebaseDatabaseUI/FirebaseArrayDelegate.h

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -22,52 +22,43 @@
2222

2323
/**
2424
* A protocol to allow instances of FirebaseArray to raise events through a
25-
* delegate. Raises all
26-
* Firebase events except FIRDataEventTypeValue.
25+
* delegate. Raises all Firebase events except @c FIRDataEventTypeValue.
2726
*/
2827
@protocol FirebaseArrayDelegate<NSObject>
2928

3029
@optional
3130

3231
/**
3332
* Delegate method which is called whenever an object is added to a
34-
* FirebaseArray. On a
35-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
36-
* [FIRDataEventTypeChildAdded](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
37-
* event being raised.
33+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
34+
* this corresponds to a @c FIRDataEventTypeChildAdded event being raised.
3835
* @param object The object added to the FirebaseArray
3936
* @param index The index the child was added at
4037
*/
4138
- (void)array:(FirebaseArray *)array didAddObject:(id)object atIndex:(NSUInteger)index;
4239

4340
/**
4441
* Delegate method which is called whenever an object is chinged in a
45-
* FirebaseArray. On a
46-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
47-
* [FIRDataEventTypeChildChanged](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
48-
* event being raised.
42+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
43+
* this corresponds to a @c FIRDataEventTypeChildChanged event being raised.
4944
* @param object The object that changed in the FirebaseArray
5045
* @param index The index the child was changed at
5146
*/
5247
- (void)array:(FirebaseArray *)array didChangeObject:(id)object atIndex:(NSUInteger)index;
5348

5449
/**
5550
* Delegate method which is called whenever an object is removed from a
56-
* FirebaseArray. On a
57-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
58-
* [FIRDataEventTypeChildRemoved](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
59-
* event being raised.
51+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
52+
* this corresponds to a @c FIRDataEventTypeChildRemoved event being raised.
6053
* @param object The object removed from the FirebaseArray
6154
* @param index The index the child was removed at
6255
*/
6356
- (void)array:(FirebaseArray *)array didRemoveObject:(id)object atIndex:(NSUInteger)index;
6457

6558
/**
6659
* Delegate method which is called whenever an object is moved within a
67-
* FirebaseArray. On a
68-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
69-
* [FIRDataEventTypeChildMoved](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
70-
* event being raised.
60+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
61+
* this corresponds to a @c FIRDataEventTypeChildMoved event being raised.
7162
* @param object The object that has moved locations in the FirebaseArray
7263
* @param fromIndex The index the child is being moved from
7364
* @param toIndex The index the child is being moved to

FirebaseDatabaseUI/FirebaseIndexArray.h

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -61,43 +61,35 @@ didFailLoadWithError:(NSError *)error;
6161

6262
/**
6363
* Delegate method which is called whenever an object is added to a
64-
* FirebaseArray. On a
65-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
66-
* [FIRDataEventTypeChildAdded](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
67-
* event being raised.
64+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
65+
* this corresponds to a @c FIRDataEventTypeChildAdded event being raised.
6866
* @param ref The database reference added to the array
6967
* @param index The index the reference was added at
7068
*/
7169
- (void)array:(FirebaseIndexArray *)array didAddReference:(FIRDatabaseReference *)ref atIndex:(NSUInteger)index;
7270

7371
/**
7472
* Delegate method which is called whenever an object is changed in a
75-
* FirebaseArray. On a
76-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
77-
* [FIRDataEventTypeChildChanged](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
78-
* event being raised.
73+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
74+
* this corresponds to a @c FIRDataEventTypeChildChanged event being raised.
7975
* @param object The database reference that changed in the array
8076
* @param index The index the reference was changed at
8177
*/
8278
- (void)array:(FirebaseIndexArray *)array didChangeReference:(FIRDatabaseReference *)ref atIndex:(NSUInteger)index;
8379

8480
/**
8581
* Delegate method which is called whenever an object is removed from a
86-
* FirebaseArray. On a
87-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
88-
* [FIRDataEventTypeChildRemoved](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
89-
* event being raised.
82+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
83+
* this corresponds to a @c FIRDataEventTypeChildRemoved event being raised.
9084
* @param object The database reference removed from the array
9185
* @param index The index the reference was removed at
9286
*/
9387
- (void)array:(FirebaseIndexArray *)array didRemoveReference:(FIRDatabaseReference *)ref atIndex:(NSUInteger)index;
9488

9589
/**
9690
* Delegate method which is called whenever an object is moved within a
97-
* FirebaseArray. On a
98-
* FirebaseArray synchronized to a Firebase reference, this corresponds to an
99-
* [FIRDataEventTypeChildMoved](https://www.firebase.com/docs/ios/guide/retrieving-data.html#section-event-types)
100-
* event being raised.
91+
* FirebaseArray. On a FirebaseArray synchronized to a Firebase reference,
92+
* this corresponds to a @c FIRDataEventTypeChildMoved event being raised.
10193
* @param object The database reference that has moved locations
10294
* @param fromIndex The index the reference is being moved from
10395
* @param toIndex The index the reference is being moved to

0 commit comments

Comments
 (0)