summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-01-18 12:14:48 +0000
committerHugo Landau <hlandau@openssl.org>2024-04-19 09:29:01 +0100
commit1807a067a15610de50a0b2f5841dc7d5c1c28d3d (patch)
tree108ad7f6faed8b97bf57eb865ef8dfdeee14ac96
parent1920a3816b325e6a460994be1ab8b3bf2ea91310 (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.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/designs/quic-design/server/quic-polling.md b/doc/designs/quic-design/server/quic-polling.md
index 30eca9ad5a..a7757001a3 100644
--- a/doc/designs/quic-design/server/quic-polling.md
+++ b/doc/designs/quic-design/server/quic-polling.md
@@ -125,7 +125,7 @@ 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” (update or inser) call. Thus
+ most of the time what is desired is an “upsert” (update or insert) 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