Skip to content

Commit 4dcb0e9

Browse files
author
rstam
committed
Added a few missing doc comments (found by checking the SandCastle Help File Builder log files).
1 parent 8ddb10d commit 4dcb0e9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Driver/Core/MongoServerInstance.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,7 @@ public MongoServerState State
200200
/// <summary>
201201
/// Gets the IP end point of this server instance.
202202
/// </summary>
203+
/// <returns>The IP end point of this server instance.</returns>
203204
public IPEndPoint GetIPEndPoint()
204205
{
205206
// use a lock free algorithm because DNS lookups are rare and concurrent lookups are tolerable

Driver/Linq/MongoQueryProvider.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ public MongoCollection Collection
6161
/// <summary>
6262
/// Builds the MongoDB query that will be sent to the server when the LINQ query is executed.
6363
/// </summary>
64+
/// <typeparam name="T">The type of the documents being queried.</typeparam>
65+
/// <param name="query">The LINQ query.</param>
6466
/// <returns>The MongoDB query.</returns>
6567
public IMongoQuery BuildMongoQuery<T>(MongoQueryable<T> query)
6668
{

0 commit comments

Comments
 (0)