Skip to content

Commit 0e723a8

Browse files
committed
fix typo
1 parent 91a69c1 commit 0e723a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/google-cloud-firestore/google/cloud/firestore_v1/pipeline_expressions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class Expression(ABC):
183183
"""Represents an expression that can be evaluated to a value within the
184184
execution of a pipeline.
185185
186-
Expressionessions are the building blocks for creating complex queries and
186+
Expressions are the building blocks for creating complex queries and
187187
transformations in Firestore pipelines. They can represent:
188188
189189
- **Field references:** Access values from document fields.
@@ -933,7 +933,7 @@ def is_absent(self) -> "BooleanExpression":
933933
>>> Field.of("email").is_absent()
934934
935935
Returns:
936-
A new `BooleanExpressionession` representing the isAbsent operation.
936+
A new `BooleanExpression` representing the isAbsent operation.
937937
"""
938938
return BooleanExpression("is_absent", [self])
939939

0 commit comments

Comments
 (0)