diff --git a/aspnetcore/fundamentals/configuration/sample/src/UsingOptions/Startup2.cs b/aspnetcore/fundamentals/configuration/sample/src/UsingOptions/Startup2.cs index 955dd30ebfdd..53b8174c394e 100644 --- a/aspnetcore/fundamentals/configuration/sample/src/UsingOptions/Startup2.cs +++ b/aspnetcore/fundamentals/configuration/sample/src/UsingOptions/Startup2.cs @@ -34,7 +34,7 @@ public void ConfigureServices(IServiceCollection services) services.Configure(Configuration); // Registers the following lambda used to configure options. - services.Configure( myOptions => + services.Configure(myOptions => { myOptions.Option1 = "value1_from_action"; }); @@ -54,4 +54,4 @@ public void Configure(IApplicationBuilder app, } } } -#endif \ No newline at end of file +#endif