Skip to content

Commit

Permalink
fixed markdown linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaronontheweb committed Jan 4, 2024
1 parent f680f1f commit fc55cfe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/articles/debugging/akka-analyzers.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ Akka.Analyzer is a [Roslyn Analysis and Code Fix](https://learn.microsoft.com/en
|--------|--------------------------------------------------------|----------|--------------|
| [AK1000](xref:AK1000) | Do not use `new` to create actors. | Error | Actor Design |
| [AK1001](xref:AK1001) | Should always close over `Sender` when using `PipeTo`. | Error | Actor Design |
| [AK2000](xref:AK2000) | Do not use `Ask` with `TimeSpan.Zero` for timeout. | Error | API Usage |
| [AK2000](xref:AK2000) | Do not use `Ask` with `TimeSpan.Zero` for timeout. | Error | API Usage |
4 changes: 2 additions & 2 deletions docs/articles/debugging/rules/AK1000.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ class Test
{
void Method()
{
// obviously, don't create a new ActorSystem every time - this is just an example.
// obviously, don't create a new ActorSystem every time - this is just an example.
ActorSystem sys = ActorSystem.Create("MySys");
Akka.Actor.Props props = Akka.Actor.Props.Create(() => new MyActor("foo", 1));
IActorRef realActorInstance = sys.ActorOf(props);
}
}
```
```
2 changes: 1 addition & 1 deletion docs/articles/debugging/rules/AK1001.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ public sealed class MyActor : UntypedActor{
LocalFunction().PipeTo(sender);
}
}
```
```
2 changes: 1 addition & 1 deletion docs/articles/debugging/rules/AK2000.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ public static class MyActorCaller{
return actor.Ask<string>(""hello"", TimeSpan.FromSeconds(1));
}
}
```
```

0 comments on commit fc55cfe

Please sign in to comment.