Skip to content

Commit bac6eab

Browse files
committed
Fix comments
1 parent 4dd0afa commit bac6eab

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

docs/readme.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ Release Notes
7878
as a Java file instead of precompiling it. This is to better support
7979
changes with the UnityPlayerActivity, and GameActivity options, in
8080
the Unity 2023 editor.
81-
- Firestore: Added `Count()`, which fetches the number of documents in
82-
the result set without actually downloading the documents.
81+
- Firestore: Added `Query.Count()`, which fetches the number of documents in
82+
the result set without actually downloading the documents
83+
([#659](https://github.com/firebase/firebase-unity-sdk/pull/659)).
8384

8485
### 10.6.0
8586
- Changes

firestore/src/AggregateQuery.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
using System.Threading.Tasks;
55

66
namespace Firebase.Firestore {
7+
/// <summary>
8+
/// A query that calculates aggregations over an underlying query.
9+
/// </summary>
710
public sealed class AggregateQuery
811
{
912
private readonly AggregateQueryProxy _proxy;

firestore/src/AggregateQuerySnapshot.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15-
using BclType = System.Type;
1615
using Firebase.Firestore.Internal;
1716

1817
namespace Firebase.Firestore {
18+
/// <summary>
19+
/// The results of executing an <c>AggregateQuerySnapshot</c>.
20+
/// </summary>
1921
public sealed class AggregateQuerySnapshot {
2022
private readonly AggregateQuerySnapshotProxy _proxy;
2123
private readonly FirebaseFirestore _firestore;

firestore/src/AggregateSource.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ namespace Firebase.Firestore {
1818
/// The sources from which an <see cref="AggregateQuery.GetSnapshotAsync"/> can retrieve its
1919
/// results.
2020
/// </summary>
21-
2221
public enum AggregateSource {
2322
/// Perform the aggregation on the server and download the result.
2423
/// The result received from the server is presented, unaltered, without

0 commit comments

Comments
 (0)