Skip to content

Commit d833918

Browse files
authored
fix(404): Update DSN-explainer links in code snippets (#12312)
1 parent f58cfad commit d833918

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

platform-includes/configuration/config-intro/dotnet.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ For example, initialize with `SentrySdk.Init` in your `Program.cs` file:
55
SentrySdk.Init(options =>
66
{
77
// A Sentry Data Source Name (DSN) is required.
8-
// See https://docs.sentry.io/product/sentry-basics/dsn-explainer/
8+
// See https://docs.sentry.io/concepts/key-terms/dsn-explainer/
99
// You can set it in the SENTRY_DSN environment variable, or you can set it in code here.
1010
options.Dsn = "___PUBLIC_DSN___";
1111

platform-includes/configuration/config-intro/powershell.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ For example, initialize with `Start-Sentry` in your PowerShell script:
44
```powershell
55
Start-Sentry {
66
# A Sentry Data Source Name (DSN) is required.
7-
# See https://docs.sentry.io/product/sentry-basics/dsn-explainer/
7+
# See https://docs.sentry.io/concepts/key-terms/dsn-explainer/
88
# You can set it in the SENTRY_DSN environment variable, or you can set it in code here.
99
$_.Dsn = '___PUBLIC_DSN___'
1010

platform-includes/getting-started-config/dotnet.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ For example, initialize with `SentrySdk.Init` in your `Program.cs` file:
55
SentrySdk.Init(options =>
66
{
77
// A Sentry Data Source Name (DSN) is required.
8-
// See https://docs.sentry.io/product/sentry-basics/dsn-explainer/
8+
// See https://docs.sentry.io/concepts/key-terms/dsn-explainer/
99
// You can set it in the SENTRY_DSN environment variable, or you can set it in code here.
1010
options.Dsn = "___PUBLIC_DSN___";
1111

0 commit comments

Comments
 (0)