@@ -99,7 +99,7 @@ public DistributedApplication(IHost host)
99
99
/// method will be called as a top-level statement in the application's entry-point.
100
100
/// </para>
101
101
/// <para>
102
- /// Note that the <paramref name="args"/> parameter is a <see langword="string"/> is essential in allowing the application
102
+ /// Note that the <paramref name="args"/> parameter is a <see langword="string"/> and is essential in allowing the application
103
103
/// host to work with deployment tools because arguments are used to tell the application host that it
104
104
/// is in publish mode. If <paramref name="args"/> is not provided the application will not work with
105
105
/// deployment tools. It is also possible to provide arguments using the <see cref="CreateBuilder(Aspire.Hosting.DistributedApplicationOptions)"/>
@@ -153,15 +153,15 @@ public static IDistributedApplicationBuilder CreateBuilder(string[] args)
153
153
/// <remarks>
154
154
/// <para>
155
155
/// The <see cref="DistributedApplication.CreateBuilder(DistributedApplicationOptions)"/> method provides
156
- /// greater control over the behavior of the distributed application at runtime. For example using providing
157
- /// a <paramref name="options"/> argument allows developers to force all container images to be loaded
156
+ /// greater control over the behavior of the distributed application at runtime. For example providing
157
+ /// an <paramref name="options"/> argument allows developers to force all container images to be loaded
158
158
/// from a specified container registry by using the <see cref="DistributedApplicationOptions.ContainerRegistryOverride"/>
159
- /// property, or disable the dashboard by using the <see cref="DistributedApplicationOptions.DisableDashboard"/>
159
+ /// property, or disabling the dashboard by using the <see cref="DistributedApplicationOptions.DisableDashboard"/>
160
160
/// property. Refer to the <see cref="DistributedApplicationOptions"/> class for more details on
161
161
/// each option that may be provided.
162
162
/// </para>
163
163
/// <para>
164
- /// When supplying a custom <see cref="DistributedApplicationOptions"/> it is commended to populate the
164
+ /// When supplying a custom <see cref="DistributedApplicationOptions"/> it is recommended to populate the
165
165
/// <see cref="DistributedApplicationOptions.Args"/> property to ensure that the app host continues to function
166
166
/// correctly when used with deployment tools that need to enable publish mode.
167
167
/// </para>
0 commit comments