Skip to content

Commit 4da7480

Browse files
committed
replaced e.g. with for example
1 parent fb6c88d commit 4da7480

9 files changed

+18
-15
lines changed

CONTRIBUTING.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To understand the nature of topics, see the link:https://redhat-documentation.gi
4646
== Project structure, branches and workflows
4747

4848
. link:https://github.com/eclipse-che/che-docs/tree/main[main branch] - hosts documentation for next version of Che.
49-
. release branches (e.g. link:https://github.com/eclipse-che/che-docs/tree/7.90.x[7.90.x]) - hosts documentations for stable versions of Che.
49+
. release branches (for example link:https://github.com/eclipse-che/che-docs/tree/7.90.x[7.90.x]) - hosts documentations for stable versions of Che.
5050
. link:https://github.com/eclipse-che/che-docs/tree/publication[publication] branch stores published documents.
5151
. link:https://github.com/eclipse-che/che-docs/tree/publication-builder[publication-builder] branch hosts a structure and a workflow for publishing documentation to the link:https://github.com/eclipse-che/che-docs/tree/publication[publication] branch.
5252

modules/administration-guide/examples/snip_che-steps-to-build-custom-plugin-registry-in-workspace.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
... Start a workspace using the link:https://github.com/eclipse-che/che-plugin-registry[plugin registry repository].
22

3-
... Open a terminal and check out the Git tag that corresponds to your {prod-short} version (e.g., `7.87.0`):
3+
... Open a terminal and check out the Git tag that corresponds to your {prod-short} version (for example, `7.87.0`):
44
+
55
[source]
66
----

modules/administration-guide/pages/calculating-che-resource-requirements.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The `tools` component of the devfile defines the following requests and limits:
5252
cpuLimit: 500m
5353
----
5454

55-
** IMPORTANT: Additional memory and CPU will be added implicitly for a JetBrains IDE (e.g. IntelliJ IDEA Ultimate):
55+
** IMPORTANT: Additional memory and CPU will be added implicitly for a JetBrains IDE (for example IntelliJ IDEA Ultimate):
5656
+
5757
[source,yaml,subs="+attributes,+quotes,macros"]
5858
----

modules/administration-guide/pages/concealing-editors.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[id="concealing-editors"]
77
= Concealing editors
88

9-
Learn how to conceal {prod-short} editors. This is useful when you want to hide selected editors from the Dashboard UI, e.g. hide the IntelliJ IDEA Ultimate and have only Visual Studio Code - Open Source visible.
9+
Learn how to conceal {prod-short} editors. This is useful when you want to hide selected editors from the Dashboard UI, for example hide the IntelliJ IDEA Ultimate and have only Visual Studio Code - Open Source visible.
1010

1111
.Prerequisites
1212

modules/administration-guide/pages/deploying-che-with-support-for-git-repositories-with-self-signed-certificates.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $ {orch-cli} create configmap che-git-self-signed-cert \
2626
--from-literal=githost=__<git_server_url>__ -n {prod-namespace} <2>
2727
----
2828
<1> Path to the self-signed certificate.
29-
<2> Optional parameter to specify the Git server URL e.g. `https://git.example.com:8443`. When omitted, the self-signed certificate is used for all repositories over HTTPS.
29+
<2> Optional parameter to specify the Git server URL for example `https://git.example.com:8443`. When omitted, the self-signed certificate is used for all repositories over HTTPS.
3030
+
3131
[NOTE]
3232
====

modules/administration-guide/pages/running-at-scale.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ a stripped-down copy of its CSV is created in every {namespace} the Operator is
136136
These stripped-down CSVs are known as “Copied CSVs”
137137
and communicate to users which controllers are actively reconciling resource events in a given namespace.
138138
On especially large clusters, with namespaces and installed operators tending in the hundreds or thousands,
139-
Copied CSVs consume an unsustainable amount of resources; e.g., OLM memory usage, cluster etcd limits,
139+
Copied CSVs consume an unsustainable amount of resources; for example, OLM memory usage, cluster etcd limits,
140140
networking, etc. To eliminate the CSVs copied to every namespace, configure the `OLMConfig` object accordingly:
141141

142142
[source,yaml]

modules/administration-guide/pages/security-best-practices.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ By default, {prod}
240240
includes the embedded Open VSX registry
241241
which contains a limited set of extensions for the Microsoft Visual Studio Code -
242242
Open Source editor.
243-
Alternatively, cluster administrators can specify a different plugin registry in the Custom Resource, e.g.
243+
Alternatively, cluster administrators can specify a different plugin registry in the Custom Resource, for example
244244
https://open-vsx.org that contains thousands of extensions.
245245
They can also build a custom Open VSX registry.
246246
include::example$snip_che-managing-extensions.adoc[]
@@ -253,7 +253,7 @@ Installing extra extensions increases potential risks. To minimize these risks,
253253
.Secrets
254254

255255
Keep sensitive data stored as {kubernetes} secrets in the users’
256-
namespaces confidential (e.g. Personal Access Tokens (PAT), and SSH keys).
256+
namespaces confidential (for example Personal Access Tokens (PAT), and SSH keys).
257257

258258
.Git repositories
259259

modules/end-user-guide/pages/devfile-introduction.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ link:https://devfile.io/[Devfiles] are `yaml` text files used for development en
1212

1313
[WARNING]
1414
====
15-
Some images can not be used as-is for defining Cloud Development Environment since Visual Studio Code - Open Source ("Code - OSS") can not be started in the containers with missing `openssl` and `libbrotli`. Missing libraries should be explicitly installed on the Dockerfile level e.g. `RUN yum install compat-openssl11 libbrotli`
15+
Some images can not be used as-is for defining Cloud Development Environment since Visual Studio Code - Open Source ("Code - OSS") can not be started in the containers with missing `openssl` and `libbrotli`. Missing libraries should be explicitly installed on the Dockerfile level for example `RUN yum install compat-openssl11 libbrotli`
1616
====
1717

1818
.Devfile and Universal Developer Image

modules/end-user-guide/pages/using-a-git-provider-access-token.adoc

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,20 @@ EOF
121121
====
122122
If you are using Azure DevOps Server, you must also modify the xref:mounting-git-configuration.adoc[workspace's
123123
gitconfig] with the following section:
124-
```
125-
[http]
124+
125+
[source,http]
126+
----
126127
extraheader = "Authorization: Basic <base64-encoded(:personal-access-token)>"
127-
```
128+
----
128129
To generate the key-value pair, use the following command:
129-
```
130+
131+
[source,commandline]
132+
----
130133
echo -n "extraheader = \"Authorization: Basic "$(printf ":%s" <personal access token> | base64)\"
131-
```
134+
----
132135
see link:https://learn.microsoft.com/en-us/azure/devops/repos/git/auth-overview?view=azure-devops&tabs=Linux#personal-access-tokens[the documentation page] for more information.
133136
134-
The `extraheader` configuration is needed for remote git operations to Azure Devops Server, e.g. `git clone`. This authorization method has a higher priority over the git credentials store, and as a result, the remote operations to other Git providers will fail.
137+
The `extraheader` configuration is needed for remote git operations to Azure Devops Server, for example `git clone`. This authorization method has a higher priority over the git credentials store, and as a result, the remote operations to other Git providers will fail.
135138
====
136139

137140
.Verification

0 commit comments

Comments
 (0)