Skip to content

Commit b205240

Browse files
authored
fix(issues): Fix typo and improve sidebar ordering (#14355)
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 c3759fe commit b205240

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ Some ORMs or query‑builder libraries assemble SQL strings internally before pa
3333

3434
## Remediation
3535

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

0 commit comments

Comments
 (0)