Skip to content

Commit 7e53818

Browse files
jo-ninjacommonsensesoftware
authored andcommitted
Fix spelling
1 parent 4a65018 commit 7e53818

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

samples/aspnetcore/BasicSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public Startup( IConfiguration configuration )
1818
// This method gets called by the runtime. Use this method to add services to the container.
1919
public void ConfigureServices( IServiceCollection services )
2020
{
21-
// the sample application always uses the latest version, but you may want an explict version such as Version_2_2
21+
// the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
2222
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
2323
services.AddMvc( options => options.EnableEndpointRouting = true ).SetCompatibilityVersion( Latest );
2424
services.AddApiVersioning(

samples/aspnetcore/ByNamespaceSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public Startup( IConfiguration configuration )
1919
// This method gets called by the runtime. Use this method to add services to the container.
2020
public void ConfigureServices( IServiceCollection services )
2121
{
22-
// the sample application always uses the latest version, but you may want an explict version such as Version_2_2
22+
// the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
2323
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
2424
services.AddMvc( options => options.EnableEndpointRouting = true ).SetCompatibilityVersion( Latest );
2525
services.AddApiVersioning(

samples/aspnetcore/ConventionsSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public Startup( IConfiguration configuration )
2121
// This method gets called by the runtime. Use this method to add services to the container.
2222
public void ConfigureServices( IServiceCollection services )
2323
{
24-
// the sample application always uses the latest version, but you may want an explict version such as Version_2_2
24+
// the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
2525
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
2626
services.AddMvc( options => options.EnableEndpointRouting = true ).SetCompatibilityVersion( Latest );
2727
services.AddApiVersioning(

samples/aspnetcore/ODataBasicSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public Startup( IConfiguration configuration )
2020
// This method gets called by the runtime. Use this method to add services to the container.
2121
public void ConfigureServices( IServiceCollection services )
2222
{
23-
// the sample application always uses the latest version, but you may want an explict version such as Version_2_2
23+
// the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
2424
// note: Endpoint Routing is enabled by default; however, it is unsupported by OData and MUST be false
2525
services.AddMvc( options => options.EnableEndpointRouting = false ).SetCompatibilityVersion( Latest );
2626
services.AddApiVersioning(

samples/aspnetcore/SwaggerODataSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class Startup
2626
/// <param name="services">The collection of services to configure the application with.</param>
2727
public void ConfigureServices( IServiceCollection services )
2828
{
29-
// the sample application always uses the latest version, but you may want an explict version such as Version_2_2
29+
// the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
3030
// note: Endpoint Routing is enabled by default; however, it is unsupported by OData and MUST be false
3131
services.AddMvc( options => options.EnableEndpointRouting = false ).SetCompatibilityVersion( Latest );
3232
services.AddApiVersioning( options => options.ReportApiVersions = true );

samples/aspnetcore/SwaggerSample/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public Startup( IConfiguration configuration )
3737
/// <param name="services">The collection of services to configure the application with.</param>
3838
public void ConfigureServices( IServiceCollection services )
3939
{
40-
// the sample application always uses the latest version, but you may want an explict version such as Version_2_2
40+
// the sample application always uses the latest version, but you may want an explicit version such as Version_2_2
4141
// note: Endpoint Routing is enabled by default; however, if you need legacy style routing via IRouter, change it to false
4242
services.AddMvc( options => options.EnableEndpointRouting = true ).SetCompatibilityVersion( Latest );
4343
services.AddApiVersioning(

0 commit comments

Comments
 (0)