Skip to content

Commit cc501f3

Browse files
afscromeeerhardt
andauthored
Correct XML Docs for RabbitMqServerResource.PrimaryEndpoint (dotnet#4118)
* Correct XML Docs for `RabbitMqServerResource.PrimaryEndpoint` It's a RabbitMQ server, not redis 😉. * Fix a few more cases --------- Co-authored-by: Eric Erhardt <[email protected]>
1 parent d4acce5 commit cc501f3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/Aspire.Hosting.Oracle/OracleDatabaseServerResource.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public OracleDatabaseServerResource(string name, ParameterResource password) : b
2424
}
2525

2626
/// <summary>
27-
/// Gets the primary endpoint for the Redis server.
27+
/// Gets the primary endpoint for the Oracle server.
2828
/// </summary>
2929
public EndpointReference PrimaryEndpoint { get; }
3030

src/Aspire.Hosting.PostgreSQL/PostgresServerResource.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public PostgresServerResource(string name, ParameterResource? userName, Paramete
2727
}
2828

2929
/// <summary>
30-
/// Gets the primary endpoint for the Redis server.
30+
/// Gets the primary endpoint for the PostgreSQL server.
3131
/// </summary>
3232
public EndpointReference PrimaryEndpoint { get; }
3333

src/Aspire.Hosting.RabbitMQ/RabbitMQServerResource.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public RabbitMQServerResource(string name, ParameterResource? userName, Paramete
2828
}
2929

3030
/// <summary>
31-
/// Gets the primary endpoint for the Redis server.
31+
/// Gets the primary endpoint for the RabbitMQ server.
3232
/// </summary>
3333
public EndpointReference PrimaryEndpoint { get; }
3434

src/Aspire.Hosting.SqlServer/SqlServerServerResource.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class SqlServerServerResource : ContainerResource, IResourceWithConnectio
1414
/// Initializes a new instance of the <see cref="SqlServerServerResource"/> class.
1515
/// </summary>
1616
/// <param name="name">The name of the resource.</param>
17-
/// <param name="password">A parameter that contains the SQL Sever password.</param>
17+
/// <param name="password">A parameter that contains the SQL Server password.</param>
1818
public SqlServerServerResource(string name, ParameterResource password) : base(name)
1919
{
2020
ArgumentNullException.ThrowIfNull(password);
@@ -24,12 +24,12 @@ public SqlServerServerResource(string name, ParameterResource password) : base(n
2424
}
2525

2626
/// <summary>
27-
/// Gets the primary endpoint for the Redis server.
27+
/// Gets the primary endpoint for the SQL Server.
2828
/// </summary>
2929
public EndpointReference PrimaryEndpoint { get; }
3030

3131
/// <summary>
32-
/// Gets the parameter that contains the PostgreSQL server password.
32+
/// Gets the parameter that contains the SQL Server password.
3333
/// </summary>
3434
public ParameterResource PasswordParameter { get; }
3535

0 commit comments

Comments
 (0)