Skip to content

Commit 09b3e74

Browse files
committed
clean up whitespace
1 parent 9e997f6 commit 09b3e74

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

FirebaseDatabaseUI/FirebaseTableViewDataSource.h

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ NS_ASSUME_NONNULL_BEGIN
2828

2929
/**
3030
* FirebaseTableViewDataSource provides an class that conforms to the
31-
* UITableViewDataSource protocol which allows UITableViews to implement
32-
* FirebaseTableViewDataSource in order to provide a UITableView synchronized
33-
* to a Firebase reference or query. In addition to handling all Firebase
34-
* child events (added, changed, removed, moved), FirebaseTableViewDataSource
35-
* handles UITableViewCell creation, either with the default UITableViewCell,
36-
* prototype cells, custom UITableViewCell subclasses, or custom XIBs, and
31+
* UITableViewDataSource protocol which allows UITableViews to implement
32+
* FirebaseTableViewDataSource in order to provide a UITableView synchronized
33+
* to a Firebase reference or query. In addition to handling all Firebase
34+
* child events (added, changed, removed, moved), FirebaseTableViewDataSource
35+
* handles UITableViewCell creation, either with the default UITableViewCell,
36+
* prototype cells, custom UITableViewCell subclasses, or custom XIBs, and
3737
* provides a simple [FirebaseTableViewDataSource populateCellWithBlock:]
3838
* method which allows developers to populate the cells created for them
3939
* with desired data from Firebase.
@@ -52,15 +52,14 @@ NS_ASSUME_NONNULL_BEGIN
5252
@property(strong, nonatomic, readonly) UITableViewCell *(^populateCell)
5353
(UITableView *tableView, NSIndexPath *indexPath, FIRDataSnapshot *snap);
5454

55-
5655
/**
5756
* Initialize an instance of FirebaseTableViewDataSource.
5857
* @param query A Firebase query to bind the data source to.
5958
* @param tableView An instance of a UITableView to bind to. This view is
6059
* not retained by the data source.
6160
* @param populateCell A closure used by the data source to create/reuse
6261
* table view cells and populate their content. This closure is retained
63-
* by the data source, so if you capture self in the closure and also claim ownership
62+
* by the data source, so if you capture self in the closure and also claim ownership
6463
* of the data source, be sure to avoid retain cycles by capturing a weak reference to self.
6564
* @return An instance of FirebaseTableViewDataSource.
6665
*/

0 commit comments

Comments
 (0)