@@ -4838,13 +4838,13 @@ declare namespace firebase.database {
4838
4838
*
4839
4839
* This is the most common pattern for adding data to a collection of items.
4840
4840
*
4841
- * If you provide a value to `push()`, the value will be written to the
4842
- * generated location. If you don't pass a value, nothing will be written to the
4843
- * Database and the child will remain empty (but you can use the `Reference`
4841
+ * If you provide a value to `push()`, the value is written to the
4842
+ * generated location. If you don't pass a value, nothing is written to the
4843
+ * database and the child remains empty (but you can use the `Reference`
4844
4844
* elsewhere).
4845
4845
*
4846
- * The unique key generated by `push()` are ordered by the current time, so the
4847
- * resulting list of items will be chronologically sorted. The keys are also
4846
+ * The unique keys generated by `push()` are ordered by the current time, so the
4847
+ * resulting list of items is chronologically sorted. The keys are also
4848
4848
* designed to be unguessable (they contain 72 random bits of entropy).
4849
4849
*
4850
4850
*
@@ -4874,9 +4874,8 @@ declare namespace firebase.database {
4874
4874
* @param value Optional value to be written at the generated location.
4875
4875
* @param onComplete Callback called when write to server is
4876
4876
* complete.
4877
- * @return Combined `Promise` and
4878
- * `Reference`; resolves when write is complete, but can be used immediately
4879
- * as the `Reference` to the child location.
4877
+ * @return Combined `Promise` and `Reference`; resolves when write is complete, but can be
4878
+ * used immediately as the `Reference` to the child location.
4880
4879
*/
4881
4880
push (
4882
4881
value ?: any ,
0 commit comments