Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Shana Matthews <shana.l.matthews@gmail.com>
  • Loading branch information
antonpirker and shanamatthews authored Sep 20, 2023
1 parent eee4839 commit a881bd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/platforms/python/guides/aiohttp/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pip install --upgrade aiocontextvars

## Configure

If you have the `aiohttp` package in your dependencies, the AIOHTTO integration will be enabled automatically. There is nothing to do for you except initializing the Sentry SDK.
If you have the `aiohttp` package in your dependencies, the AIOHTTO integration will be enabled automatically when you initialize the Sentry SDK.

<SignInNote />

Expand Down Expand Up @@ -55,7 +55,7 @@ app.add_routes([web.get('/', hello)])
web.run_app(app)
```

When you point your browser to [http://localhost:8080/](http://localhost:8080/) a transaction in the Performance section of [sentry.io](https://sentry.io) will be created. Additionally an error event will be sent to [sentry.io](https://sentry.io) and will be connected to the transaction.
When you point your browser to [http://localhost:8080/](http://localhost:8080/) a transaction will be created in the Performance section of [sentry.io](https://sentry.io). Additionally, an error event will be sent to [sentry.io](https://sentry.io) and will be connected to the transaction.

It takes a couple of moments for the data to appear in [sentry.io](https://sentry.io).

Expand All @@ -75,7 +75,7 @@ It takes a couple of moments for the data to appear in [sentry.io](https://sentr

## Options

By adding `AioHttpIntegration` explicitly to your `sentry_sdk.init()` call you can set options for `AioHttpIntegration` to change its behavior:
By adding `AioHttpIntegration` to your `sentry_sdk.init()` call explicitly, you can set options for `AioHttpIntegration` to change its behavior:

```python
import sentry_sdk
Expand Down

0 comments on commit a881bd2

Please sign in to comment.