Skip to content

Commit

Permalink
docs: Improve "where in/not-in" documentation slightly
Browse files Browse the repository at this point in the history
  • Loading branch information
jskeet committed Oct 5, 2020
1 parent e35d18b commit 8698c6e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apis/Google.Cloud.Firestore/Google.Cloud.Firestore/Query.cs
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ public Query Select(params FieldPath[] fieldPaths)

/// <summary>
/// Returns a query with a filter specifying that <paramref name="fieldPath"/> must be
/// a field present in the document, with a value which is one of the values <paramref name="values"/>.
/// a field present in the document, with a value which is one of the values in <paramref name="values"/>.
/// </summary>
/// <remarks>
/// This call adds additional filters to any previously-specified ones.
Expand All @@ -380,7 +380,7 @@ public Query Select(params FieldPath[] fieldPaths)

/// <summary>
/// Returns a query with a filter specifying that <paramref name="fieldPath"/> must be
/// a field present in the document, with a value which is one of the values <paramref name="values"/>.
/// a field present in the document, with a value which is one of the values in <paramref name="values"/>.
/// </summary>
/// <remarks>
/// This call adds additional filters to any previously-specified ones.
Expand All @@ -393,7 +393,7 @@ public Query Select(params FieldPath[] fieldPaths)

/// <summary>
/// Returns a query with a filter specifying that <paramref name="fieldPath"/> must be
/// a field present in the document, with a value which is not one of the values <paramref name="values"/>.
/// a field present in the document, with a value which is not one of the values in <paramref name="values"/>.
/// </summary>
/// <remarks>
/// This call adds additional filters to any previously-specified ones.
Expand All @@ -406,7 +406,7 @@ public Query Select(params FieldPath[] fieldPaths)

/// <summary>
/// Returns a query with a filter specifying that <paramref name="fieldPath"/> must be
/// a field present in the document, with a value which is not one of the values <paramref name="values"/>.
/// a field present in the document, with a value which is not one of the values in <paramref name="values"/>.
/// </summary>
/// <remarks>
/// This call adds additional filters to any previously-specified ones.
Expand Down

0 comments on commit 8698c6e

Please sign in to comment.