Skip to content

Commit

Permalink
Fix Typo in Kubernetes API Docs (#3213)
Browse files Browse the repository at this point in the history
### Proposed changes
This is a simple typo fix to change `is` to `it's`. There's also some
linting included that removes trailing spaces and newlines, but I can
remove these if that should be a separate PR.
  • Loading branch information
nelsonfigueroa authored Sep 20, 2024
1 parent 74673fd commit febccfc
Show file tree
Hide file tree
Showing 20 changed files with 133 additions and 140 deletions.
4 changes: 2 additions & 2 deletions provider/cmd/pulumi-resource-kubernetes/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -54315,7 +54315,7 @@
},
"repo": {
"type": "string",
"description": "Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository."
"description": "Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository."
},
"username": {
"type": "string",
Expand Down Expand Up @@ -54386,7 +54386,7 @@
},
"repo": {
"type": "string",
"description": "Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository."
"description": "Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository."
},
"username": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions provider/pkg/gen/overlays.go
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ var helmV3RepoOpts = pschema.ComplexTypeSpec{
TypeSpec: pschema.TypeSpec{
Type: "string",
},
Description: "Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.",
Description: "Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.",
},
"keyFile": { // TODO: Content or file
TypeSpec: pschema.TypeSpec{
Expand Down Expand Up @@ -420,7 +420,7 @@ var helmV4RepoOpts = pschema.ComplexTypeSpec{
TypeSpec: pschema.TypeSpec{
Type: "string",
},
Description: "Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.",
Description: "Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.",
},
"keyFile": {
TypeSpec: pschema.TypeSpec{
Expand Down
2 changes: 1 addition & 1 deletion provider/pkg/provider/helm_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ type ReleaseSpec struct{}

// Specification defining the Helm chart repository to use.
type RepositoryOpts struct {
// Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
// Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
Repo string `json:"repo,omitempty"`
// The Repositories CA File
CAFile string `json:"caFile,omitempty"`
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Helm/V3/Inputs/RepositoryOptsArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Input<string>? Password
}

/// <summary>
/// Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
/// Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
/// </summary>
[Input("repo")]
public Input<string>? Repo { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Helm/V3/Inputs/RepositorySpecArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Pulumi.Kubernetes.Types.Inputs.Helm.V3
public class RepositorySpecArgs : Pulumi.ResourceArgs
{
/// <summary>
/// Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
/// Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
/// </summary>
[Input("repository")]
public Input<string>? Repository { get; set; }
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Helm/V3/Outputs/RepositoryOpts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public sealed class RepositoryOpts
/// </summary>
public readonly string Password;
/// <summary>
/// Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
/// Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
/// </summary>
public readonly string Repo;
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Helm/V3/Outputs/RepositorySpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Pulumi.Kubernetes.Types.Outputs.Helm.V3
public sealed class RepositorySpec
{
/// <summary>
/// Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
/// Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
/// </summary>
public readonly string Repository;
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/Helm/V4/Inputs/RepositoryOptsArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public Input<string>? Password
}

/// <summary>
/// Repository where to locate the requested chart. If is a URL the chart is installed without installing the repository.
/// Repository where to locate the requested chart. If it's a URL the chart is installed without installing the repository.
/// </summary>
[Input("repo")]
public Input<string>? Repo { get; set; }
Expand Down
8 changes: 4 additions & 4 deletions sdk/go/kubernetes/helm/v3/pulumiTypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions sdk/go/kubernetes/helm/v4/pulumiTypes.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit febccfc

Please sign in to comment.