From 40b592c11911c536067e34323249c3af433bb5f6 Mon Sep 17 00:00:00 2001 From: Brian Hensley <48165493+brnhensley@users.noreply.github.com> Date: Fri, 10 May 2024 14:03:20 -0700 Subject: [PATCH] fix: wrap import in `""` --- .../apm/agents/go-agent/installation/install-new-relic-go.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/apm/agents/go-agent/installation/install-new-relic-go.mdx b/src/content/docs/apm/agents/go-agent/installation/install-new-relic-go.mdx index bcaf1e90772..a4bb7fa6858 100644 --- a/src/content/docs/apm/agents/go-agent/installation/install-new-relic-go.mdx +++ b/src/content/docs/apm/agents/go-agent/installation/install-new-relic-go.mdx @@ -42,7 +42,7 @@ In order to install the Go agent, you need a 2. Import the `github.com/newrelic/go-agent/v3/newrelic` package in your application. ```go - import github.com/newrelic/go-agent/v3/newrelic + import "github.com/newrelic/go-agent/v3/newrelic" ``` 3. Initialize the Go agent by adding the following in the `main` function or in an `init` block: