Skip to content

Commit 7efb69c

Browse files
authored
Update index.mdx
1 parent 0d8ce11 commit 7efb69c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/platforms/rust/guides/axum/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn main() -> io::Result<()> {
4848
"___PUBLIC_DSN___",
4949
sentry::ClientOptions {
5050
release: sentry::release_name!(),
51-
// Capture all traces and spans. Set to a lower value in production.
51+
// Capture all traces and spans. Set to a lower value in production
5252
traces_sample_rate: 1.0,
5353
// Capture user IPs and potentially sensitive headers when using HTTP server integrations
5454
// see https://docs.sentry.io/platforms/rust/data-management/data-collected for more info
@@ -59,7 +59,7 @@ fn main() -> io::Result<()> {
5959

6060
let app = Router::new().route("/", get(failing)).layer(
6161
ServiceBuilder::new()
62-
// If you're binding the layers directly on the `Router`, bind them in the opposite order, otherwise you might run into a memory leak.
62+
// If you're binding the layers directly on the `Router`, bind them in the opposite order, otherwise you might run into a memory leak
6363
.layer(NewSentryLayer::<Request<Body>>::new_from_top()) // Bind a new Hub per request, to ensure correct error <> request correlation
6464
.layer(SentryHttpLayer::new().enable_transaction()), // Start a transaction (Sentry root span) for each request
6565
);
@@ -96,4 +96,4 @@ Learn more about manually capturing an error or message in our <PlatformLink to=
9696

9797
</Alert>
9898

99-
To view and resolve the recorded error, log into [sentry.io](https://sentry.io) and select your project. Clicking on the error's title will open a page where you can see detailed information and mark it as resolved.
99+
To view and resolve the recorded error, log into [sentry.io](https://sentry.io) and select your project. Clicking on the error's title will open a page where you can see detailed information and mark it as resolved.

0 commit comments

Comments
 (0)