Skip to content

Commit d0cbb42

Browse files
committed
Fixed comment URLs
1 parent 7e75109 commit d0cbb42

File tree

2 files changed

+24
-12
lines changed

2 files changed

+24
-12
lines changed

arangodb-net-standard/AdminApi/AdminApiClient.cs

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ public AdminApiClient(IApiClientTransport client, IApiClientSerialization serial
5353
/// <param name="query">Query string parameters</param>
5454
/// <returns></returns>
5555
/// <remarks>
56-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#read-global-logs-from-the-server"/>
56+
/// For further information see
57+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#read-global-logs-from-the-server
5758
/// </remarks>
5859
public virtual async Task<GetLogsResponse> GetLogsAsync(GetLogsQuery query = null)
5960
{
@@ -79,7 +80,8 @@ public virtual async Task<GetLogsResponse> GetLogsAsync(GetLogsQuery query = nul
7980
/// </summary>
8081
/// <returns></returns>
8182
/// <remarks>
82-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#reloads-the-routing-information"/>
83+
/// For further information see
84+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#reloads-the-routing-information
8385
/// </remarks>
8486
public virtual async Task<bool> PostReloadRoutingInfoAsync()
8587
{
@@ -102,7 +104,8 @@ public virtual async Task<bool> PostReloadRoutingInfoAsync()
102104
/// </summary>
103105
/// <returns></returns>
104106
/// <remarks>
105-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-id-of-a-server-in-a-cluster"/>
107+
/// For further information see
108+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-id-of-a-server-in-a-cluster
106109
/// </remarks>
107110
public virtual async Task<GetServerIdResponse> GetServerIdAsync()
108111
{
@@ -124,7 +127,8 @@ public virtual async Task<GetServerIdResponse> GetServerIdAsync()
124127
/// </summary>
125128
/// <returns></returns>
126129
/// <remarks>
127-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-the-role-of-a-server-in-a-cluster"/>
130+
/// For further information see
131+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-the-role-of-a-server-in-a-cluster
128132
/// </remarks>
129133
public virtual async Task<GetServerRoleResponse> GetServerRoleAsync()
130134
{
@@ -146,7 +150,8 @@ public virtual async Task<GetServerRoleResponse> GetServerRoleAsync()
146150
/// </summary>
147151
/// <returns></returns>
148152
/// <remarks>
149-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-database-engine-type"/>
153+
/// For further information see
154+
/// https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-database-engine-type
150155
/// </remarks>
151156
public virtual async Task<GetServerEngineTypeResponse> GetServerEngineTypeAsync()
152157
{
@@ -169,7 +174,8 @@ public virtual async Task<GetServerEngineTypeResponse> GetServerEngineTypeAsync(
169174
/// <param name="query">Query string parameters</param>
170175
/// <returns></returns>
171176
/// <remarks>
172-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-version"/>
177+
/// For further information see
178+
/// https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-version
173179
/// </remarks>
174180
public virtual async Task<GetServerVersionResponse> GetServerVersionAsync(GetServerVersionQuery query = null)
175181
{

arangodb-net-standard/AdminApi/IAdminApiClient.cs

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ public interface IAdminApiClient
1717
/// <param name="query">Query string parameters</param>
1818
/// <returns></returns>
1919
/// <remarks>
20-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#read-global-logs-from-the-server"/>
20+
/// For further information see
21+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#read-global-logs-from-the-server
2122
/// </remarks>
2223
Task<GetLogsResponse> GetLogsAsync(GetLogsQuery query = null);
2324

@@ -27,7 +28,8 @@ public interface IAdminApiClient
2728
/// </summary>
2829
/// <returns></returns>
2930
/// <remarks>
30-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#reloads-the-routing-information"/>
31+
/// For further information see
32+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#reloads-the-routing-information
3133
/// </remarks>
3234
Task<bool> PostReloadRoutingInfoAsync();
3335

@@ -38,7 +40,8 @@ public interface IAdminApiClient
3840
/// </summary>
3941
/// <returns></returns>
4042
/// <remarks>
41-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-id-of-a-server-in-a-cluster"/>
43+
/// For further information see
44+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-id-of-a-server-in-a-cluster
4245
/// </remarks>
4346
Task<GetServerIdResponse> GetServerIdAsync();
4447

@@ -48,7 +51,8 @@ public interface IAdminApiClient
4851
/// </summary>
4952
/// <returns></returns>
5053
/// <remarks>
51-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-the-role-of-a-server-in-a-cluster"/>
54+
/// For further information see
55+
/// https://www.arangodb.com/docs/stable/http/administration-and-monitoring.html#return-the-role-of-a-server-in-a-cluster
5256
/// </remarks>
5357
Task<GetServerRoleResponse> GetServerRoleAsync();
5458

@@ -58,7 +62,8 @@ public interface IAdminApiClient
5862
/// </summary>
5963
/// <returns></returns>
6064
/// <remarks>
61-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-database-engine-type"/>
65+
/// For further information see
66+
/// https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-database-engine-type
6267
/// </remarks>
6368
Task<GetServerEngineTypeResponse> GetServerEngineTypeAsync();
6469

@@ -69,7 +74,8 @@ public interface IAdminApiClient
6974
/// <param name="query">Query string parameters</param>
7075
/// <returns></returns>
7176
/// <remarks>
72-
/// For further information <see cref="https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-version"/>
77+
/// For further information see
78+
/// https://www.arangodb.com/docs/stable/http/miscellaneous-functions.html#return-server-version
7379
/// </remarks>
7480
Task<GetServerVersionResponse> GetServerVersionAsync(GetServerVersionQuery query = null);
7581
}

0 commit comments

Comments
 (0)