Skip to content

Commit 30f66dc

Browse files
authored
Merge pull request #4 from motecshine/master
fix readme typo
2 parents 527895d + d3dfef6 commit 30f66dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.mkd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ import (
1313
"github.com/atlassian/go-sentry-api"
1414
)
1515
// Auth token is always required, secondary is endpoint and third is timeout defaults 60 seconds
16-
client := sentry.NewClient("yourauthtokengoeshere", nil, nil)
16+
client, _:= sentry.NewClient("yourauthtokengoeshere", nil, nil)
1717

1818
// Fetch your organization
1919
org, err := client.GetOrganization("sentry")
2020
if err != nil {
21-
panice(err)
21+
panic(err)
2222
}
2323

2424
// Fetch a project you already made
2525
project, err := client.GetProject(org, "my-project-slug")
2626
if err != nil {
27-
panice(err)
27+
panic(err)
2828
}
2929

3030
// Create a new Client DSN via the API

0 commit comments

Comments
 (0)