Skip to content

Commit d1d7723

Browse files
committed
use Xcode 9.2 in travis
Change-Id: I8337c41bf27a529a908cfef31b27a9a6e17c0c6c
1 parent a5a96d3 commit d1d7723

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
osx_image: xcode9
1+
osx_image: xcode9.2
22
language: objective-c
33
xcode_workspace: FirebaseUI.xcworkspace
44
xcode_scheme: FirebaseUI

FirebaseFirestoreUI/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
#Firestore UI - UI Bindings for Cloud Firestore
1+
# Firestore UI - UI Bindings for Cloud Firestore
22

33
Firestore UI provides a handful of classes that allow developers to easily bind
44
UI elements to Cloud Firestore queries, and to update their UI elements when
55
those queries change.
66

7-
##API Overview
7+
## API Overview
88

99
FUIFirestoreTableViewDataSource | Binds a Firestore query to a table view.
1010
FUIFirestoreCollectionViewDataSource | Binds a Firestore query to a collection view.
1111
FUIBatchedArray | Maintains a local array containing the contents of a Firestore query.
1212
FUISnapshotArrayDiff | Describes an array update in a manner friendly to table and collection views.
1313

14-
####FUIFirestoreTableViewDataSource
14+
#### FUIFirestoreTableViewDataSource
1515

1616
`FUIFirestoreTableViewDataSource` is responsible for observing a Firestore query
1717
and updating a UITableView as the query changes, suitable for single-section
@@ -30,7 +30,7 @@ self.dataSource = tableView.bind(to: query) { tableView, indexPath, snapshot in
3030
}
3131
```
3232

33-
####FUIFirestoreCollectionViewDataSource
33+
#### FUIFirestoreCollectionViewDataSource
3434

3535
Like its table view counterpart, `FUIFirestoreCollectionViewDataSource` keeps a
3636
Firestore query in sync with a collection view instance, suitable for
@@ -45,7 +45,7 @@ self.dataSource = collectionView.bind(to: query) { collectionView, indexPath, sn
4545
}
4646
```
4747

48-
####FUIBatchedArray
48+
#### FUIBatchedArray
4949

5050
`FUIBatchedArray` powers all of the updating logic in the data source classes
5151
by generating diffs from the document change data in Firestore query snapshot
@@ -63,7 +63,7 @@ let array = FUIBatchedArray(query: query, delegate: self)
6363
array.observeQuery()
6464
```
6565

66-
####FUISnapshotArrayDiff
66+
#### FUISnapshotArrayDiff
6767

6868
This class and its helper classes are responsible for the diffing logic in
6969
FirestoreUI. You should never have to use this directly, though all of the

0 commit comments

Comments
 (0)