Skip to content

Commit 6aa5cde

Browse files
committed
fix(issues): Fix typo and improve sidebar ordering
This ordering update ensures that breadcrumbs are always listed after issue detectors. Used the following to get a rough understanding of ordering: ``` $ ag sidebar_order docs/product/issues/issue-details | sort -t: -k4 -n ```
1 parent 9053d96 commit 6aa5cde

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/product/issues/issue-details/breadcrumbs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Using Breadcrumbs
33
description: "Learn about using breadcrumbs on the Issue Details page to help debug faster."
4-
sidebar_order: 40
4+
sidebar_order: 60
55
---
66

77
Sentry uses _breadcrumbs_ to create a trail of events that happened prior to an issue. These events are very similar to traditional logs, but can record more rich structured data.

docs/product/issues/issue-details/query-injection-issues/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ Some ORMs or query‑builder libraries assemble SQL strings internally before pa
3434
## Remediation
3535

3636
- Use **parameterised queries / prepared statements** instead of string concatenation.
37-
- **Validate and sanitise** all external input.
37+
- **Validate and sanitize** all external input.
3838
- Avoid **raw queries** when safe ORM APIs are available.

0 commit comments

Comments
 (0)