Skip to content

Commit a8faeb6

Browse files
committed
fix(cost-centers): use third-person verb in data source descriptions
Closes #51
1 parent c17c220 commit a8faeb6

4 files changed

Lines changed: 4 additions & 4 deletions

github/data_source_github_enterprise_cost_center.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
func dataSourceGithubEnterpriseCostCenter() *schema.Resource {
1111
return &schema.Resource{
12-
Description: "Use this data source to retrieve information about a specific enterprise cost center.",
12+
Description: "Retrieves information about a specific GitHub enterprise cost center.",
1313
ReadContext: dataSourceGithubEnterpriseCostCenterRead,
1414

1515
Schema: map[string]*schema.Schema{

github/data_source_github_enterprise_cost_centers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
func dataSourceGithubEnterpriseCostCenters() *schema.Resource {
1313
return &schema.Resource{
14-
Description: "Use this data source to retrieve a list of enterprise cost centers.",
14+
Description: "Retrieves a list of GitHub enterprise cost centers.",
1515
ReadContext: dataSourceGithubEnterpriseCostCentersRead,
1616

1717
Schema: map[string]*schema.Schema{

website/docs/d/enterprise_cost_center.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: |-
77

88
# github_enterprise_cost_center
99

10-
Use this data source to retrieve a GitHub enterprise cost center by ID.
10+
Retrieves information about a specific GitHub enterprise cost center.
1111

1212
## Example Usage
1313

website/docs/d/enterprise_cost_centers.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: |-
77

88
# github_enterprise_cost_centers
99

10-
Use this data source to list GitHub enterprise cost centers.
10+
Retrieves a list of GitHub enterprise cost centers.
1111

1212
## Example Usage
1313

0 commit comments

Comments
 (0)