Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Fix casing in comment to match struct name
Browse files Browse the repository at this point in the history
  • Loading branch information
lmphil committed Nov 21, 2024
1 parent 35f6959 commit 0be4373
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dependency_list_export.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ type DependencyListExportService struct {
client *Client
}

// createDependencyListExportOptions represents the available CreateDependencyListExport()
// CreateDependencyListExportOptions represents the available CreateDependencyListExport()
// options.
//
// GitLab API docs:
Expand Down Expand Up @@ -90,6 +90,8 @@ func (s *DependencyListExportService) GetDependencyListExport(id int, options ..

// DownloadDependencyListExport downloads a single dependency list export.
//
// The github.com/CycloneDX/cyclonedx-go package can be used to parse the returned bytes.
//
// GitLab docs:
// https://docs.gitlab.com/ee/api/dependency_list_export.html#download-dependency-list-export
func (s *DependencyListExportService) DownloadDependencyListExport(id int, options ...RequestOptionFunc) ([]byte, *Response, error) {
Expand Down

0 comments on commit 0be4373

Please sign in to comment.