Skip to content

Commit 45698e8

Browse files
committed
fix typo in content/en/docs/contribute/generate-ref-docs/quickstart.md
Signed-off-by: yuswift <[email protected]>
1 parent 1376909 commit 45698e8

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

content/en/docs/contribute/generate-ref-docs/quickstart.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 40
66

77
<!-- overview -->
88

9-
This page shows how to use the `update-imported-docs` script to generate
9+
This page shows how to use the `update-imported-docs.py` script to generate
1010
the Kubernetes reference documentation. The script automates
1111
the build setup and generates the reference documentation for a release.
1212

@@ -39,7 +39,7 @@ see the [contributing upstream guide](/docs/contribute/generate-ref-docs/contrib
3939

4040
## Overview of update-imported-docs
4141

42-
The `update-imported-docs` script is located in the `<web-base>/update-imported-docs/`
42+
The `update-imported-docs.py` script is located in the `<web-base>/update-imported-docs/`
4343
directory.
4444

4545
The script builds the following references:
@@ -48,7 +48,7 @@ The script builds the following references:
4848
* The `kubectl` command reference
4949
* The Kubernetes API reference
5050

51-
The `update-imported-docs` script generates the Kubernetes reference documentation
51+
The `update-imported-docs.py` script generates the Kubernetes reference documentation
5252
from the Kubernetes source code. The script creates a temporary directory
5353
under `/tmp` on your machine and clones the required repositories: `kubernetes/kubernetes` and
5454
`kubernetes-sigs/reference-docs` into this directory.
@@ -69,7 +69,7 @@ The `generate-command` field defines a series of build instructions
6969
from `kubernetes-sigs/reference-docs/Makefile`. The `K8S_RELEASE` variable
7070
determines the version of the release.
7171

72-
The `update-imported-docs` script performs the following steps:
72+
The `update-imported-docs.py` script performs the following steps:
7373

7474
1. Clones the related repositories specified in a configuration file. For the
7575
purpose of generating reference docs, the repository that is cloned by
@@ -152,17 +152,17 @@ For example:
152152

153153
## Running the update-imported-docs tool
154154

155-
You can run the `update-imported-docs` tool as follows:
155+
You can run the `update-imported-docs.py` tool as follows:
156156

157157
```shell
158158
cd <web-base>/update-imported-docs
159-
./update-imported-docs <configuration-file.yml> <release-version>
159+
./update-imported-docs.py <configuration-file.yml> <release-version>
160160
```
161161

162162
For example:
163163

164164
```shell
165-
./update-imported-docs reference.yml 1.17
165+
./update-imported-docs.py reference.yml 1.17
166166
```
167167

168168
<!-- Revisit: is the release configuration used -->
@@ -254,4 +254,3 @@ running the build targets, see the following guides:
254254
* [Generating Reference Documentation for kubectl Commands](/docs/contribute/generate-ref-docs/kubectl/)
255255
* [Generating Reference Documentation for the Kubernetes API](/docs/contribute/generate-ref-docs/kubernetes-api/)
256256
257-

0 commit comments

Comments
 (0)