Skip to content
This repository was archived by the owner on Sep 7, 2022. It is now read-only.

Commit 34e00de

Browse files
committed
Fix true keywords in doc comments
1 parent bddf21e commit 34e00de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/firestore.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -717,7 +717,7 @@ class DocumentSnapshot
717717
dynamic get(/*String|FieldPath*/ fieldPath) =>
718718
dartify(jsObject.get(fieldPath));
719719

720-
/// Returns [true] if this [DocumentSnapshot] is equal to the provided one.
720+
/// Returns `true` if this [DocumentSnapshot] is equal to the provided one.
721721
bool isEqual(DocumentSnapshot other) => jsObject.isEqual(other.jsObject);
722722
}
723723

@@ -774,7 +774,7 @@ class QuerySnapshot
774774
return jsObject.forEach(callbackWrap);
775775
}
776776

777-
/// Returns [true] if this [QuerySnapshot] is equal to the provided one.
777+
/// Returns `true` if this [QuerySnapshot] is equal to the provided one.
778778
bool isEqual(QuerySnapshot other) => jsObject.isEqual(other.jsObject);
779779
}
780780

0 commit comments

Comments
 (0)