diff --git a/docs/platforms/go/common/usage/index.mdx b/docs/platforms/go/common/usage/index.mdx index 59f7bda69588c8..507b1f54ce9788 100644 --- a/docs/platforms/go/common/usage/index.mdx +++ b/docs/platforms/go/common/usage/index.mdx @@ -1,16 +1,16 @@ --- title: Usage -description: "Use the SDK to manually capture errors and other events." +description: "Use the SDK to capture errors and other events." sidebar_order: 10 --- -Sentry's SDK hooks into your runtime environment and automatically reports errors, uncaught exceptions, and unhandled rejections as well as other types of errors depending on the platform. +Sentry's SDK hooks into your runtime environment, letting recover from panics and also manually capture and report errors and other events. Key terms: -- An _event_ is one instance of sending data to Sentry. Generally, this data is an error or exception. +- An _event_ is one instance of sending data to Sentry. Generally, this data is an error or panic. - An _issue_ is a grouping of similar events. - The reporting of an event is called _capturing_. When an event is captured, it’s sent to Sentry.