Skip to content

Commit

Permalink
Remove unnecessary space before parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
scottaddie authored Sep 5, 2017
1 parent 372d177 commit da82076
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void ConfigureServices(IServiceCollection services)
services.Configure<MyOptions>(Configuration);

// Registers the following lambda used to configure options.
services.Configure<MyOptions>( myOptions =>
services.Configure<MyOptions>(myOptions =>
{
myOptions.Option1 = "value1_from_action";
});
Expand All @@ -54,4 +54,4 @@ public void Configure(IApplicationBuilder app,
}
}
}
#endif
#endif

0 comments on commit da82076

Please sign in to comment.