@@ -556,7 +556,7 @@ public virtual MongoCursor FindAs(Type documentType, IMongoQuery query)
556
556
}
557
557
558
558
/// <summary>
559
- /// Returns a cursor that can be used to find one document in this collection as a TDocument.
559
+ /// Returns one document in this collection as a TDocument.
560
560
/// </summary>
561
561
/// <typeparam name="TDocument">The type to deserialize the documents as.</typeparam>
562
562
/// <returns>A TDocument (or null if not found).</returns>
@@ -566,7 +566,7 @@ public virtual TDocument FindOneAs<TDocument>()
566
566
}
567
567
568
568
/// <summary>
569
- /// Returns a cursor that can be used to find one document in this collection that matches a query as a TDocument.
569
+ /// Returns one document in this collection that matches a query as a TDocument.
570
570
/// </summary>
571
571
/// <typeparam name="TDocument">The type to deserialize the documents as.</typeparam>
572
572
/// <param name="query">The query (usually a QueryDocument or constructed using the Query builder).</param>
@@ -577,7 +577,7 @@ public virtual TDocument FindOneAs<TDocument>(IMongoQuery query)
577
577
}
578
578
579
579
/// <summary>
580
- /// Returns a cursor that can be used to find one document in this collection as a TDocument.
580
+ /// Returns one document in this collection as a TDocument.
581
581
/// </summary>
582
582
/// <param name="documentType">The nominal type of the documents.</param>
583
583
/// <returns>A document (or null if not found).</returns>
@@ -587,7 +587,7 @@ public virtual object FindOneAs(Type documentType)
587
587
}
588
588
589
589
/// <summary>
590
- /// Returns a cursor that can be used to find one document in this collection that matches a query as a TDocument.
590
+ /// Returns one document in this collection that matches a query as a TDocument.
591
591
/// </summary>
592
592
/// <param name="documentType">The type to deserialize the documents as.</param>
593
593
/// <param name="query">The query (usually a QueryDocument or constructed using the Query builder).</param>
@@ -1790,7 +1790,7 @@ public virtual MongoCursor<TDefaultDocument> FindAll()
1790
1790
}
1791
1791
1792
1792
/// <summary>
1793
- /// Returns a cursor that can be used to find one document in this collection as a TDefaultDocument.
1793
+ /// Returns one document in this collection as a TDefaultDocument.
1794
1794
/// </summary>
1795
1795
/// <returns>A TDefaultDocument (or null if not found).</returns>
1796
1796
public virtual TDefaultDocument FindOne ( )
@@ -1799,7 +1799,7 @@ public virtual TDefaultDocument FindOne()
1799
1799
}
1800
1800
1801
1801
/// <summary>
1802
- /// Returns a cursor that can be used to find one document in this collection that matches a query as a TDefaultDocument.
1802
+ /// Returns one document in this collection that matches a query as a TDefaultDocument.
1803
1803
/// </summary>
1804
1804
/// <param name="query">The query (usually a QueryDocument or constructed using the Query builder).</param>
1805
1805
/// <returns>A TDefaultDocument (or null if not found).</returns>
0 commit comments