Skip to content

Worlds smallest pull request (typo in method summary) #536

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 27, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public T SetGlobalQueryStringParameters(NameValueCollection queryStringParameter
}

/// <summary>
/// Timeout in milliseconds when the .NET webrquest should abort the request, note that you can set this to a high value here,
/// Timeout in milliseconds when the .NET webrequest should abort the request, note that you can set this to a high value here,
/// and specify the timeout in various calls on Elasticsearch's side.
/// </summary>
/// <param name="timeout">time out in milliseconds</param>
Expand Down
4 changes: 2 additions & 2 deletions src/Elasticsearch.Net/Connection/IConnectionConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public interface IConnectionConfiguration<out T> where T : IConnectionConfigurat
/// <returns></returns>
T SetGlobalQueryStringParameters(NameValueCollection queryStringParameters); /// <summary>

/// Timeout in milliseconds when the .NET webrquest should abort the request, note that you can set this to a high value here,
/// Timeout in milliseconds when the .NET webrequest should abort the request, note that you can set this to a high value here,
/// and specify the timeout in various calls on Elasticsearch's side.
/// </summary>
/// <param name="timeout">time out in milliseconds</param>
Expand Down Expand Up @@ -57,4 +57,4 @@ public interface IConnectionConfiguration<out T> where T : IConnectionConfigurat
/// </summary>
T SetConnectionStatusHandler(Action<ElasticsearchResponse> handler);
}
}
}