From 20bc6494198e109cf5125cf25542a5a493855706 Mon Sep 17 00:00:00 2001 From: Akanksha Trehun <146705736+magic-peach@users.noreply.github.com> Date: Fri, 17 Jul 2026 20:25:12 +0530 Subject: [PATCH] docs: fix typo in untar promotion step docs (overriden -> overridden) (#6588) Signed-off-by: Akanksha Trehun (cherry picked from commit 193e2e7f0c90ed5c7a70a2ed84ba968e66d7d774) --- .../50-user-guide/60-reference-docs/30-promotion-steps/untar.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/50-user-guide/60-reference-docs/30-promotion-steps/untar.md b/docs/docs/50-user-guide/60-reference-docs/30-promotion-steps/untar.md index aad2ca8539..1e07c2e905 100644 --- a/docs/docs/50-user-guide/60-reference-docs/30-promotion-steps/untar.md +++ b/docs/docs/50-user-guide/60-reference-docs/30-promotion-steps/untar.md @@ -12,7 +12,7 @@ description: Extracts the contents of a tar (or gzipped tar) file to a specified | Name | Type | Required | Description | |------|------|----------|-------------| | `inPath` | `string` | Y | Path to the tar file to extract. This path is relative to the temporary workspace that Kargo provisions for use by the promotion process. | -| `outPath` | `string` | Y | Path to the destination directory where contents will be extracted. This path is relative to the temporary workspace that Kargo provisions for use by the promotion process. The outPath content will be overriden if it already exists. | +| `outPath` | `string` | Y | Path to the destination directory where contents will be extracted. This path is relative to the temporary workspace that Kargo provisions for use by the promotion process. The outPath content will be overridden if it already exists. | | `stripComponents` | `integer` | N | Number of leading path components to strip from file names in the archive. Similar to the `--strip-components` option in the tar command. | | `ignore` | `string` | N | A multiline string of glob patterns to ignore when extracting files. It accepts the same syntax as `.gitignore` files. |