Skip to content

Commit 322e554

Browse files
committed
chore: typos
1 parent 0c9b5e6 commit 322e554

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ See below for examples on how to configure Honeybadger for different types of ap
3737
```json
3838
{
3939
"Honeybadger": {
40-
"ApiKey": "_api_key",
40+
"ApiKey": "api_key",
4141
"AppEnvironment": "Development",
4242
"ReportData": true
4343
}
@@ -51,7 +51,7 @@ See below for examples on how to configure Honeybadger for different types of ap
5151

5252
#### Usage
5353

54-
You can get access to the _Honeybadger Client_ using _DI_:
54+
You can access the _Honeybadger Client_ using _DI_:
5555
```c#
5656
app.MapGet("/", ([FromServices] IHoneybadgerClient client) =>
5757
{
@@ -139,7 +139,10 @@ See example project in `examples/Honeybadger.DotNetCoreWebApp.Logger`.
139139
```
140140
3. Call `notify` to report to Honeybadger:
141141
```c#
142+
// blocking
142143
client.Notify("hello from .Net !");
144+
// or async
145+
await client.NotifyAsync("hello from .Net !");
143146
```
144147

145148
See example project in `examples/Honeybadger.Console`.

0 commit comments

Comments
 (0)