summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Sjölund <erik.sjolund@gmail.com>2022-07-13 13:54:30 +0200
committerErik Sjölund <erik.sjolund@gmail.com>2022-07-14 15:20:59 +0200
commit8e2add770917c45cb018392fa4aceacba73694ef (patch)
treee4ca987d775d7e9879d007ccfd2c7321f6c385e3
parent2270bc5f96f6f7ae540e322833005c1994a28af0 (diff)
downloadpodman-8e2add770917c45cb018392fa4aceacba73694ef.tar.gz
podman-8e2add770917c45cb018392fa4aceacba73694ef.tar.bz2
podman-8e2add770917c45cb018392fa4aceacba73694ef.zip
[CI:DOCS] Update docs/tutorials/socket_activation.md
Co-authored-by: Valentin Rothberg <vrothberg@redhat.com> Signed-off-by: Erik Sjölund <erik.sjolund@gmail.com>
-rw-r--r--docs/tutorials/socket_activation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/socket_activation.md b/docs/tutorials/socket_activation.md
index 8275075f0..7eeb1ed80 100644
--- a/docs/tutorials/socket_activation.md
+++ b/docs/tutorials/socket_activation.md
@@ -3,7 +3,7 @@
Socket activation conceptually works by having systemd create a socket (e.g. TCP, UDP or Unix
socket). As soon as a client connects to the socket, systemd will start the systemd service that is
configured for the socket. The newly started program inherits the file descriptor of the socket
-and can then call accept the incoming connection (in other words run the system call `accept()`).
+and can then accept the incoming connection (in other words run the system call `accept()`).
This description corresponds to the default systemd socket configuration
[`Accept=no`](https://www.freedesktop.org/software/systemd/man/systemd.socket.html#Accept=)
that lets the service accept the socket.