Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Suchiman committed Nov 27, 2017
1 parent fc7c167 commit 7caa191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Checks that contextual loggers are constructed with the correct type.
```csharp
class A
{
private static readonly ILogger Logger = Logger.ForContext<B>());
private static readonly ILogger Logger = Logger.ForContext<B>();
}

class B {}
Expand All @@ -177,7 +177,7 @@ A CodeFix is provided, that uses the correct type.
```csharp
class A
{
private static readonly ILogger Logger = Logger.ForContext<A>());
private static readonly ILogger Logger = Logger.ForContext<A>();
}

class B {}
Expand Down

0 comments on commit 7caa191

Please sign in to comment.