diff --git a/docs/resources/git_repository.md b/docs/resources/git_repository.md index 34dbadb..a80e12e 100644 --- a/docs/resources/git_repository.md +++ b/docs/resources/git_repository.md @@ -21,11 +21,11 @@ GitRepository resource ### Optional -- `https_path` (String) Manually supplied https path for non standard git setups. This is auto-inferred in many cases. +- `https_path` (String) Manually supplied https path for non standard Git setups. This is auto-inferred in many cases. - `passphrase` (String, Sensitive) Passphrase to decrypt the given private key. - `password` (String, Sensitive) HTTP password for http authenticated repos. - `private_key` (String, Sensitive) SSH private key to use with this repo if an ssh url was given. -- `url_format` (String) Similar to https_Path, a manually supplied url format for custom git. Should be something like {url}/tree/{ref}/{folder}. +- `url_format` (String) Similar to `https_path`, a manually supplied url format for custom Git. Should be something like `{url}/tree/{ref}/{folder}`. - `username` (String) HTTP username for authenticated http repos, defaults to apiKey for GitHub. ### Read-Only diff --git a/internal/resource/git_repository.go b/internal/resource/git_repository.go index 2f760af..28c96f7 100644 --- a/internal/resource/git_repository.go +++ b/internal/resource/git_repository.go @@ -97,11 +97,11 @@ func (r *GitRepositoryResource) Schema(_ context.Context, _ resource.SchemaReque Sensitive: true, }, "url_format": schema.StringAttribute{ - MarkdownDescription: "Similar to https_Path, a manually supplied url format for custom git. Should be something like {url}/tree/{ref}/{folder}.", + MarkdownDescription: "Similar to `https_path`, a manually supplied url format for custom Git. Should be something like `{url}/tree/{ref}/{folder}`.", Optional: true, }, "https_path": schema.StringAttribute{ - MarkdownDescription: "Manually supplied https path for non standard git setups. This is auto-inferred in many cases.", + MarkdownDescription: "Manually supplied https path for non standard Git setups. This is auto-inferred in many cases.", Optional: true, }, },