Skip to content

Commit 3ce909a

Browse files
Run dotnet format 🚨
1 parent 498c999 commit 3ce909a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

‎Src/Notion.Client/DI/ServiceCollectionExtensions.cs‎

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
using System;
1+
using System;
22
using Notion.Client;
33

44
namespace Microsoft.Extensions.DependencyInjection
55
{
66
public static class ServiceCollectionExtensions
77
{
8-
public static IServiceCollection AddNotionClient(this IServiceCollection services, Action<ClientOptions> options)
8+
public static IServiceCollection AddNotionClient(this IServiceCollection services, Action<ClientOptions> options)
99
{
10-
services.AddSingleton<INotionClient, NotionClient>(sp => {
10+
services.AddSingleton<INotionClient, NotionClient>(sp =>
11+
{
1112
var clientOptions = new ClientOptions();
1213
options?.Invoke(clientOptions);
1314

‎Src/Notion.Client/NotionClientFactory.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Notion.Client
1+
namespace Notion.Client
22
{
33
public static class NotionClientFactory
44
{

0 commit comments

Comments
 (0)