Skip to content

Commit fce6c53

Browse files
Minor typos (#22)
1 parent 8d0acd2 commit fce6c53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Blocking Detection for ASP.NET Core
66

77
## Detect Blocking Calls in ASP.NET Core Applications
88

9-
Blocking calls can lead to ThreadPool starvation. Ouputs a warning to the log when blocking calls are made on the ThreadPool.
9+
Blocking calls can lead to ThreadPool starvation. Outputs a warning to the log when blocking calls are made on the ThreadPool.
1010

1111
### Usage
1212

@@ -20,7 +20,7 @@ app.UseBlockingDetection();
2020

2121
Doesn't detect everything... so its not a panacea; you should actively try to avoid using blocking calls.
2222

23-
1. For `async` methods with occurances of **`.ConfigureAwait(false)`**, detection won't alert for blocking `Monitor` calls after occurances in the case where the returned `Task` wasn't already completed
23+
1. For `async` methods with occurances of **`.ConfigureAwait(false)`**, detection won't alert for blocking `Monitor` calls after occurences in the case where the returned `Task` wasn't already completed
2424
2. Won't alert for blocking calls that don't block, like on precompleted `Task`s (e.g. a single small `Body.Write`)
2525
3. Won't alert for blocking that happens in syscalls (e.g. `File.Read(...)`, `Thread.Sleep`)
2626

0 commit comments

Comments
 (0)