Skip to content

Commit

Permalink
fix documentation typo (#6583)
Browse files Browse the repository at this point in the history
* fix typo of documentation in code

* Create cool-seas-confess.md

* fix formatting

Co-authored-by: Maneesh Tewani <[email protected]>
  • Loading branch information
tylim88 and maneesht authored Oct 3, 2022
1 parent 629627f commit 5aa48d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/cool-seas-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@firebase/database": patch
---

Fixed `endBefore` and `push` documentation typos in RTDB
8 changes: 4 additions & 4 deletions packages/database/src/api/Reference_impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -578,8 +578,8 @@ export interface ThenableReferenceImpl
* resulting list of items is chronologically sorted. The keys are also
* designed to be unguessable (they contain 72 random bits of entropy).
*
* See {@link https://firebase.google.com/docs/database/web/lists-of-data#append_to_a_list_of_data | Append to a list of data}
* </br>See {@link ttps://firebase.googleblog.com/2015/02/the-2120-ways-to-ensure-unique_68.html | The 2^120 Ways to Ensure Unique Identifiers}
* See {@link https://firebase.google.com/docs/database/web/lists-of-data#append_to_a_list_of_data | Append to a list of data}.
* See {@link https://firebase.googleblog.com/2015/02/the-2120-ways-to-ensure-unique_68.html | The 2^120 Ways to Ensure Unique Identifiers}.
*
* @param parent - The parent location.
* @param value - Optional value to be written at the generated location.
Expand Down Expand Up @@ -1782,8 +1782,8 @@ class QueryEndBeforeConstraint extends QueryConstraint {
*
* The ending point is exclusive. If only a value is provided, children
* with a value less than the specified value will be included in the query.
* If a key is specified, then children must have a value lesss than or equal
* to the specified value and a a key name less than the specified key.
* If a key is specified, then children must have a value less than or equal
* to the specified value and a key name less than the specified key.
*
* @param value - The value to end before. The argument type depends on which
* `orderBy*()` function was used in this query. Specify a value that matches
Expand Down

0 comments on commit 5aa48d0

Please sign in to comment.