Skip to content

Commit ae3eec2

Browse files
authored
docs: grammar and spelling fixes (#22136)
<!--Delete sections as needed --> ## Description <!-- Tell us what you did and why --> Fix a few grammar and spelling errors. ## Reviews <!-- Notes for reviewers here --> <!-- List applicable reviews (optionally @tag reviewers) --> - [ ] Technical review - [ ] Editorial review - [ ] Product review
1 parent 1f684b9 commit ae3eec2

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

content/guides/genai-leveraging-rag/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The system operates as follows:
3838
3. The found information gets added to the original question before passed to LLM
3939
4. The LLM generates responses that blend the model's inherent knowledge with the this extra information.
4040

41-
To hold this vector information in a efficient manner, we need a special type of database.
41+
To hold this vector information in an efficient manner, we need a special type of database.
4242

4343
## Introduction to Graph databases
4444

content/guides/python/deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ In these Kubernetes YAML file, there are various objects, separated by the `---`
161161
your Python application](configure-ci-cd.md).
162162
- A Service, which will define how the ports are mapped in the containers.
163163
- A PersistentVolumeClaim, to define a storage that will be persistent through restarts for the database.
164-
- A Secret, Keeping the database password as a example using secret kubernetes resource.
164+
- A Secret, Keeping the database password as an example using secret kubernetes resource.
165165
- A NodePort service, which will route traffic from port 30001 on your host to
166166
port 8001 inside the pods it routes to, allowing you to reach your app
167167
from the network.

content/guides/ruby/develop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ $ docker compose watch
176176

177177
Any changes to the application's source files on your local machine will now be immediately reflected in the running container.
178178

179-
Open `docker-ruby-on-rails/app/views/whales/index.html.erb` in an IDE or text editor and update the `Whales` string by adding a exclamation marks.
179+
Open `docker-ruby-on-rails/app/views/whales/index.html.erb` in an IDE or text editor and update the `Whales` string by adding an exclamation mark.
180180

181181
```diff
182182
- <h1>Whales</h1>

content/manuals/desktop/features/dev-environments/set-up.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ aliases:
1818
1919
To set up a dev environment, there are additional configuration steps to tell Docker Desktop how to build, start, and use the right image for your services.
2020

21-
Dev Environments use an `compose-dev.yaml` file located at the root of your project. This file allows you to define the image required for a dedicated service, the ports you'd like to expose, along with additional configuration options.
21+
Dev Environments use a `compose-dev.yaml` file located at the root of your project. This file allows you to define the image required for a dedicated service, the ports you'd like to expose, along with additional configuration options.
2222

2323
The following is an example `compose-dev.yaml` file.
2424

content/manuals/desktop/use-desktop/volumes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ To empty a volume:
119119

120120
## Export a volume
121121

122-
You can export the content of a volume to a local file, a local image, an to an
122+
You can export the content of a volume to a local file, a local image, and to an
123123
image in Docker Hub, or to a supported cloud provider. When exporting content
124124
from a volume used by one or more running containers, the containers are
125125
temporarily stopped while Docker exports the content, and then restarted when

content/manuals/engine/logging/drivers/gelf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The `gelf` logging driver supports the following options:
6666
| `gelf-address` | required | The address of the GELF server. `tcp` and `udp` are the only supported URI specifier and you must specify the port. | `--log-opt gelf-address=udp://192.168.0.42:12201` |
6767
| `gelf-compression-type` | optional | `UDP Only` The type of compression the GELF driver uses to compress each log message. Allowed values are `gzip`, `zlib` and `none`. The default is `gzip`. Note that enabled compression leads to excessive CPU usage, so it's highly recommended to set this to `none`. | `--log-opt gelf-compression-type=gzip` |
6868
| `gelf-compression-level` | optional | `UDP Only` The level of compression when `gzip` or `zlib` is the `gelf-compression-type`. An integer in the range of `-1` to `9` (BestCompression). Default value is 1 (BestSpeed). Higher levels provide more compression at lower speed. Either `-1` or `0` disables compression. | `--log-opt gelf-compression-level=2` |
69-
| `gelf-tcp-max-reconnect` | optional | `TCP Only` The maximum number of reconnection attempts when the connection drop. An positive integer. Default value is 3. | `--log-opt gelf-tcp-max-reconnect=3` |
69+
| `gelf-tcp-max-reconnect` | optional | `TCP Only` The maximum number of reconnection attempts when the connection drop. A positive integer. Default value is 3. | `--log-opt gelf-tcp-max-reconnect=3` |
7070
| `gelf-tcp-reconnect-delay` | optional | `TCP Only` The number of seconds to wait between reconnection attempts. A positive integer. Default value is 1. | `--log-opt gelf-tcp-reconnect-delay=1` |
7171
| `tag` | optional | A string that's appended to the `APP-NAME` in the `gelf` message. By default, Docker uses the first 12 characters of the container ID to tag log messages. Refer to the [log tag option documentation](log_tags.md) for customizing the log tag format. | `--log-opt tag=mailer` |
7272
| `labels` | optional | Applies when starting the Docker daemon. A comma-separated list of logging-related labels this daemon accepts. Adds additional key on the `extra` fields, prefixed by an underscore (`_`). Used for advanced [log tag options](log_tags.md). | `--log-opt labels=production_status,geo` |

content/manuals/engine/release-notes/28.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,6 @@ For a full list of pull requests and changes in this release, refer to the relev
317317
- `api/types/system/Commit.Expected` field is deprecated and should no longer be used. [moby/moby#48478](https://github.com/moby/moby/pull/48478)
318318
- `daemon/graphdriver`: Deprecate `GetDriver()` [moby/moby#48079](https://github.com/moby/moby/pull/48079)
319319
- `libnetwork/iptables`: Deprecate `Passthrough`. This function was only used internally, and will be removed in the next release. [moby/moby#49115](https://github.com/moby/moby/pull/49115)
320-
- `pkg/directory.Size()` function is deprecated, an will be removed in the next release. [moby/moby#48057](https://github.com/moby/moby/pull/48057)
320+
- `pkg/directory.Size()` function is deprecated, and will be removed in the next release. [moby/moby#48057](https://github.com/moby/moby/pull/48057)
321321
- `registry`: Deprecate `APIEndpoint.TrimHostName`; hostname is now trimmed unconditionally for remote names. This field will be removed in the next release. [moby/moby#49005](https://github.com/moby/moby/pull/49005)
322322
- `allow-nondistributable-artifacts` field in `daemon.json`. Setting either option will no longer take effect, but a deprecation warning log is added to raise awareness about the deprecation. This warning is planned to become an error in the next release. [moby/moby#49065](https://github.com/moby/moby/pull/49065)

content/manuals/engine/security/rootless.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ The value is automatically set to `/run/user/$UID` and cleaned up on every logou
490490

491491
**`systemctl --user` fails with "Failed to connect to bus: No such file or directory"**
492492

493-
This error occurs mostly when you switch from the root user to an non-root user with `sudo`:
493+
This error occurs mostly when you switch from the root user to a non-root user with `sudo`:
494494

495495
```console
496496
# sudo -iu testuser

content/manuals/engine/security/trust/trust_delegation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Successfully generated and loaded private key. Corresponding public key availabl
122122

123123
### Manually generating keys
124124

125-
If you need to manually generate a private key (either RSA or ECDSA) and a x509
125+
If you need to manually generate a private key (either RSA or ECDSA) and an X.509
126126
certificate containing the public key, you can use local tools like openssl or
127127
cfssl along with a local or company-wide Certificate Authority.
128128

content/manuals/engine/storage/drivers/overlayfs-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ its compatibility with different backing filesystems.
104104
OverlayFS layers two directories on a single Linux host and presents them as
105105
a single directory. These directories are called layers, and the unification
106106
process is referred to as a union mount. OverlayFS refers to the lower directory
107-
as `lowerdir` and the upper directory a `upperdir`. The unified view is exposed
107+
as `lowerdir` and the upper directory as `upperdir`. The unified view is exposed
108108
through its own directory called `merged`.
109109

110110
The `overlay2` driver natively supports up to 128 lower OverlayFS layers. This

0 commit comments

Comments
 (0)