Commit e10d39cd authored by Martin Palma's avatar Martin Palma Committed by Sander van Harmelen

Fixed wrong bracket in example code (#186)

parent a8062fd5
...@@ -58,7 +58,7 @@ to list all projects for user "svanharmelen": ...@@ -58,7 +58,7 @@ to list all projects for user "svanharmelen":
```go ```go
git := gitlab.NewClient(nil) git := gitlab.NewClient(nil)
opt := &ListProjectsOptions{Search: gitlab.String("svanharmelen")}) opt := &ListProjectsOptions{Search: gitlab.String("svanharmelen")}
projects, _, err := git.Projects.ListProjects(opt) projects, _, err := git.Projects.ListProjects(opt)
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment