Skip to content

Commit c19bca1

Browse files
committed
Fix descriptions
1 parent 4679c85 commit c19bca1

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/Nest/Cluster/TaskManagement/TasksList/ElasticClient-TasksList.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ namespace Nest
77
public partial interface IElasticClient
88
{
99
/// <summary>
10-
/// Does a request to the root of an elasticsearch node
10+
/// Retrieve information about the tasks currently executing on one or more nodes in the cluster.
1111
/// </summary>
12-
/// <param name="selector">A descriptor to further describe the root operation</param>
12+
/// <param name="selector">A descriptor to further describe the tasks to retrieve information for</param>
1313
ITasksListResponse TasksList(Func<TasksListDescriptor, ITasksListRequest> selector = null);
1414

1515
/// <inheritdoc/>

src/Nest/CommonAbstractions/Infer/TaskId/TaskId.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@ namespace Nest
66
{
77
public class TaskId : IUrlParameter, IEquatable<TaskId>
88
{
9-
109
public string NodeId { get; }
1110
public long TaskNumber { get; }
1211
public string FullyQualifiedId => $"{NodeId}:{TaskNumber.ToString(CultureInfo.InvariantCulture)}";
1312

1413
/// <summary>
15-
/// A task id exists in the form <node_id>:<task_id>
14+
/// A task id exists in the form [node_id]:[task_id]
1615
/// </summary>
17-
/// <param name="taskId"></param>
16+
/// <param name="taskId">the task identifier</param>
1817
public TaskId(string taskId)
1918
{
2019
if (string.IsNullOrWhiteSpace(taskId))

0 commit comments

Comments
 (0)