Browse Source

fix(onboarding): Escape newline in go-fiber snippet (#71986)

ArthurKnaus 9 months ago
parent
commit
edf6935360
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/gettingStartedDocs/go/fiber.tsx

+ 1 - 1
static/app/gettingStartedDocs/go/fiber.tsx

@@ -36,7 +36,7 @@ if err := sentry.Init(sentry.ClientOptions{
   // We recommend adjusting this value in production,
   TracesSampleRate: 1.0,
 }); err != nil {
-  fmt.Printf("Sentry initialization failed: %v\n", err)
+  fmt.Printf("Sentry initialization failed: %v\\n", err)
 }
 
 // Later in the code