Skip to content

Commit 02dfd95

Browse files
committed
refactor: Break long line
1 parent aefca91 commit 02dfd95

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/LinkDotNet.Blog.Web/Controller/RssFeedController.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ public sealed class RssFeedController : ControllerBase
2323
private readonly string blogName;
2424
private readonly IRepository<BlogPost> blogPostRepository;
2525

26-
public RssFeedController(IOptions<Introduction> introductionConfiguration,IOptions<ApplicationConfiguration> applicationConfiguration, IRepository<BlogPost> blogPostRepository)
26+
public RssFeedController(
27+
IOptions<Introduction> introductionConfiguration,
28+
IOptions<ApplicationConfiguration> applicationConfiguration,
29+
IRepository<BlogPost> blogPostRepository)
2730
{
2831
ArgumentNullException.ThrowIfNull(introductionConfiguration);
2932
ArgumentNullException.ThrowIfNull(applicationConfiguration);

0 commit comments

Comments
 (0)