summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-11-09 07:37:36 +0000
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:29:01 +0100
commit1920a3816b325e6a460994be1ab8b3bf2ea91310 (patch)
tree4a13b57a7baed834bd012312b133d77ac6b300b2
parent71f4b2dcd236fe1d0b289f8f1619001f98534f28 (diff)
Fix nit
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21795)
-rw-r--r--doc/designs/quic-design/server/quic-polling.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/designs/quic-design/server/quic-polling.md b/doc/designs/quic-design/server/quic-polling.md
index 9c11db88fc..30eca9ad5a 100644
--- a/doc/designs/quic-design/server/quic-polling.md
+++ b/doc/designs/quic-design/server/quic-polling.md
@@ -125,8 +125,8 @@ contain a large number of design issues:
- There are separate `EPOLL_CTL_ADD` and `EPOLL_CTL_MOD` calls which are needed
to add a new FD registration and modify an existing FD registration, when
- most of the time what is desired is an “upsert” call. Thus callers have to
- track whether an FD has already been added or not.
+ most of the time what is desired is an “upsert” (update or inser) call. Thus
+ callers have to track whether an FD has already been added or not.
- Only one FD can be registered, modified, or unregistered per syscall, rather
than several FDs at once (syscall overhead).