Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: fix docs for floatingips, licenses, subnets #83

Merged
merged 1 commit into from
Aug 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion selvpcclient/resell/v2/floatingips/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Example of getting a single floating ip referenced by its id

Example of getting all floating ips

allFloatingIPs, _, err := floatingips.List(ctx, resellClient)
allFloatingIPs, _, err := floatingips.List(ctx, resellClient, floatingips.ListOpts{})
if err != nil {
log.Fatal(err)
}
Expand Down
2 changes: 1 addition & 1 deletion selvpcclient/resell/v2/licenses/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Example of getting a single license referenced by its id

Example of getting all licenses

allLicenses, _, err := licenses.List(ctx, resellClient)
allLicenses, _, err := licenses.List(ctx, resellClient, licenses.ListOpts{})
if err != nil {
log.Fatal(err)
}
Expand Down
2 changes: 1 addition & 1 deletion selvpcclient/resell/v2/subnets/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Example of getting a single subnet referenced by its id

Example of getting all subnets

allSubnets, _, err := subnets.List(ctx, resellClient)
allSubnets, _, err := subnets.List(ctx, resellClient, subnets.ListOpts{})
if err != nil {
log.Fatal(err)
}
Expand Down